-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
bugcurrent functionality does not work as desiredcurrent functionality does not work as desiredhelp wantedscope:reporters
Description
Steps to reproduce (AVA: 2.2.0, macOS Mojave, Node.js 12.6):
- Download and unzip https://exploringjs.com/impatient-js/downloads/impatient-js-preview-code.zip
- Edit
package.json
and remove--verbose
:- BEFORE:
"test": "ava --verbose --match \"!*#bonus\"",
- AFTER:
"test": "ava --match \"!*#bonus\"",
- BEFORE:
npm install
npm t installation_test.mjs
[works properly]
Interaction 1: bug (error output is hidden)
$ npm t ./exercises/strings/remove_extension_test.mjs
✖ Couldn't find any matching tests
Interaction 2: desired output
$ npm t ./exercises/strings/remove_extension_test.mjs -- -v
Uncaught exception in exercises/strings/remove_extension_test.mjs
Error: Cannot find module './remove_extension.mjs'
Require stack:
- /Users/rauschma/tmp/impatient-js-preview-code/exercises/strings/remove_extension_test.mjs
- /Users/rauschma/tmp/impatient-js-preview-code/node_modules/ava/lib/worker/subprocess.js
✖ exercises/strings/remove_extension_test.mjs exited with a non-zero exit code: 1
✖ Couldn't find any matching tests
Metadata
Metadata
Assignees
Labels
bugcurrent functionality does not work as desiredcurrent functionality does not work as desiredhelp wantedscope:reporters