Here are some examples of npm scripts:
"scripts": {
"test": "mocha tools/testSetup.js src/**/*.spec.js"
}
"scripts": {
"test": "mocha tools/testSetup.js 'src/**/*.spec.js'"
}
"scripts": {
"test": "mocha tools/testSetup.js \"src/**/*.spec.js\""
}
Interestingly, despite the different use of quotes in the test scripts, they all run smoothly as expected. This raises the question: do we really need to use quotes at all?