We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
package.json:
package.json
{ "test": "per-env", "test:development": "mocha --watch", "test:test": "mocha" }
Breaks:
$ npm test -- --grep api > @terse/webpack@0.0.5 test /Users/Eric/Projects/ericclemmons/terse-webpack > per-env "--grep" "api" > @terse/webpack@0.0.5 test:development /Users/Eric/Projects/ericclemmons/terse-webpack > mocha --watch "api" /Users/Eric/Projects/ericclemmons/terse-webpack/node_modules/mocha/lib/utils.js:634 throw new Error("cannot resolve path (or pattern) '" + path + "'"); ^ Error: cannot resolve path (or pattern) 'api'
Works:
$ npm run test:development -- --grep api
The text was updated successfully, but these errors were encountered:
Pass additional args (ericclemmons#6)
d2172a0
ericclemmons
Successfully merging a pull request may close this issue.
package.json
:Breaks:
Works:
The text was updated successfully, but these errors were encountered: