-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
Remove duplicate test #12
Conversation
wescarr
commented
Oct 26, 2022
- Fixes Duplicate tests #8
Codecov Report
@@ Coverage Diff @@
## main #12 +/- ##
=======================================
Coverage ? 98.75%
=======================================
Files ? 1
Lines ? 161
Branches ? 71
=======================================
Hits ? 159
Misses ? 2
Partials ? 0 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
LGTM
Thanks for the review @shadowspawn! |
bc68a35
to
5784b17
Compare
@@ -19,10 +19,9 @@ test('-', function (t) { | |||
}); | |||
|
|||
test('-a -- b', function (t) { | |||
t.plan(3); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -19,10 +19,9 @@ test('-', function (t) { | |||
}); | |||
|
|||
test('-a -- b', function (t) { | |||
t.plan(3); | |||
t.plan(2); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
t.deepEqual(parse(['-a', '--', 'b']), { a: true, _: ['b'] }); | ||
t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] }); | ||
t.deepEqual(parse(['--a', '--', 'b']), { a: true, _: ['b'] }); |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.