-
-
Notifications
You must be signed in to change notification settings - Fork 973
test: remove JSON.stringify wrapper around faker.seed() in tests descriptions #1196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1196 +/- ##
==========================================
+ Coverage 99.63% 99.64% +0.01%
==========================================
Files 2148 2146 -2
Lines 230582 230499 -83
Branches 983 981 -2
==========================================
- Hits 229736 229689 -47
+ Misses 825 789 -36
Partials 21 21
|
They were wrapped due to |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's okay.
:) |
And that's why But it doesn't matter since we know now from the signature overload if the return value will be an array or not and can act accordingly. |
From the signature we know it's never an array :) |
Lines 242 to 244 in 5ea8252
It literally has |
Indeed! I haven't notice the overload because of jsdoc, sorry :) |
I am not sure why we had those
JSON.stringify
@Shinigami92?