-
-
Save timoxley/1721593 to your computer and use it in GitHub Desktop.
// this will find all files ending with _test.js and run them with Mocha. Put this in your package.json | |
"scripts": { | |
"test": "find ./tests -name '*_test.js' | xargs mocha -R spec" | |
}, | |
In case anyone is interested, I actually switched to jest, because it seems to have a much easier test script.
"scripts": {
"test": "jest"
}
That's it ๐
Thank you very much!
it works for me to wrap glob path into quotes
"scripts": { "test": "mocha \"test/**/*.spec.js\"" }
๐
it works for me to wrap glob path into quotes
"scripts": { "test": "mocha \"test/**/*.spec.js\"" }
Thanks, it worked! ๐
anyone among you does web automation with mocha framework with java script?I cant find enough source online.I need help!
anyone among you do web automation with a mocha framework with javascript?I can't find enough sources online. I need help!
@alitarlaaci1981 you can connect me in this regard, I use mocha with JS.
[email protected]
it works for me to wrap glob path into quotes
"scripts": { "test": "mocha \"test/**/*.spec.js\"" }
๐
it works for me to wrap glob path into quotes
"scripts": { "test": "mocha \"test/**/*.spec.js\"" }๐
OMG, Thank you!
Without escaped quotes, it behaves totally different, and I thought that I have issues with NYC. I could not generate a proper code coverage report, and it derived me nearly insane.
for me its working using --recursive
"scripts": {
"test": "mocha --recursive --exit"
}
Also, to avoid using a pipe, you can use this version of
find
:Where:
src
is the folder where to find your unit test scripts.*.spec.js
is the regular expression that will match the files you want to use withmocha
.@babel/register
a register to use (for instance for TypeScript:--require ts-node/register
).