-
Notifications
You must be signed in to change notification settings - Fork 735
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
Fix common.expand error #709
Conversation
Codecov Report
@@ Coverage Diff @@
## master #709 +/- ##
==========================================
+ Coverage 94.66% 94.68% +0.01%
==========================================
Files 33 33
Lines 1219 1223 +4
==========================================
+ Hits 1154 1158 +4
Misses 65 65
Continue to review full report at Codecov.
|
|
||
test('non-string', t => { | ||
const result = common.expand([5]); | ||
t.falsy(shell.error()); |
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.
No need to check shell.error()
, it's never set by this function (it's internal). Maybe just file a bug to clean up these tests later.
Fixes #664