Skip to content

Instantly share code, notes, and snippets.

@timoxley
Created February 2, 2012 04:58
Show Gist options
  • Select an option

  • Save timoxley/1721593 to your computer and use it in GitHub Desktop.

Select an option

Save timoxley/1721593 to your computer and use it in GitHub Desktop.
Recursively run all tests in test directory using mocha
// 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"
},
@mukeshkamboj

Copy link
Copy Markdown

thansk @whroman

@lxjwlt

lxjwlt commented Aug 10, 2017

Copy link
Copy Markdown

it works for me to wrap glob path into quotes

"scripts": {
    "test": "mocha \"test/**/*.spec.js\""
}

@austinfelipe

Copy link
Copy Markdown

@lxjwlt thanks mate, it works perfectly

@Byloor

Byloor commented Oct 9, 2017

Copy link
Copy Markdown

Does this work in windows? isnt find command for linux ?
I have test:unix : ""test:": "NODE_ENV=testing ./node_modules/mocha/bin/mocha $(find ./test -path '.tests') --reporter spec", -- which works for linux,

I have "test:win": "set NODE_ENV=testing&& node node_modules/mocha/bin/mocha **dont know what to replace it with here ** --reporter spec",

-- Answering my own concern
replacing $(find ./test -path '.tests') with mocha ./test --recursive -- works in Windows

@JoeWemyss90

Copy link
Copy Markdown

@Byloor, Near as I can tell, your solution seems to work on both Windows and *NIX systems. This is the form I used:

"unit": "cross-env NODE_ENV=test LOG_LEVEL=silent nyc mocha ./test/unit -name '*_test.js' --recursive --compilers js:babel-core/register -R spec"

@joshperry

joshperry commented Jan 12, 2018

Copy link
Copy Markdown

@lxjwlt, Gracias! This was the simple fix for me. Single quotes also allow you to avoid escaping.

  "scripts": {
    "test": "mocha --require test-setup.js './**/*.spec.js'"
  }

@Heeseok

Heeseok commented Nov 18, 2018

Copy link
Copy Markdown

Single quotes are not working for me in Windows 10.

mocha './**/*.spec.js'

Warning: Could not find any test files matching pattern: './**/*.spec.js'
No test files found
npm ERR! Test failed. See above for more details.

@lxjwlt, Gracias! This was the simple fix for me. Single quotes also allow you to avoid escaping.

  "scripts": {
    "test": "mocha --require test-setup.js './**/*.spec.js'"
  }

@ademidun

ademidun commented May 26, 2019

Copy link
Copy Markdown

THanks so much for this @timoxley

@Heeseok The following worked for me

"scripts": {
    "test": "find ./**/tests -name '*spec.js' | xargs ./node_modules/.bin/mocha -R spec"
}

@aminnairi

Copy link
Copy Markdown

Also, to avoid using a pipe, you can use this version of find:

"scripts": {
  "test": "find src -name '*.spec.js' -exec mocha --require @babel/register {} \\;"
}

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 with mocha.
  • @babel/register a register to use (for instance for TypeScript: --require ts-node/register).

@ademidun

Copy link
Copy Markdown

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 😁

@thanhdat21293

Copy link
Copy Markdown

Thank you very much!

@gauravchodwadia

Copy link
Copy Markdown

it works for me to wrap glob path into quotes

"scripts": {
    "test": "mocha \"test/**/*.spec.js\""
}

πŸ––

@margonzalez

Copy link
Copy Markdown

it works for me to wrap glob path into quotes

"scripts": {
    "test": "mocha \"test/**/*.spec.js\""
}

Thanks, it worked! πŸ‘Œ

@alitarlaaci1981

Copy link
Copy Markdown

anyone among you does web automation with mocha framework with java script?I cant find enough source online.I need help!

@azazrehman

Copy link
Copy Markdown

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.
azaz.bscs3173@iiu.edu.pk

@faethonm

Copy link
Copy Markdown

it works for me to wrap glob path into quotes

"scripts": {
    "test": "mocha \"test/**/*.spec.js\""
}

πŸ‘

@vcostin

vcostin commented May 31, 2021

Copy link
Copy Markdown

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.

@ANUR46

ANUR46 commented Sep 21, 2023

Copy link
Copy Markdown

for me its working using --recursive

"scripts": {
    "test": "mocha --recursive --exit"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment