diff --git a/nodejs/package.json b/nodejs/package.json index 15f2540..903d2b3 100644 --- a/nodejs/package.json +++ b/nodejs/package.json @@ -14,9 +14,9 @@ "scripts": { "start": "node ./bin/www", "dev": "npx nodemon --ignore public/ ./bin/www", - "test": "NODE_ENV=test node --test --test-force-exit 'test/**/*.test.js'", - "test:unit": "NODE_ENV=test node --test --test-force-exit 'test/unit/**/*.test.js'", - "test:integration": "NODE_ENV=test node --test --test-force-exit 'test/integration/**/*.test.js'" + "test": "NODE_ENV=test node --test --test-force-exit test/unit/*.test.js test/integration/*.test.js", + "test:unit": "NODE_ENV=test node --test --test-force-exit test/unit/*.test.js", + "test:integration": "NODE_ENV=test node --test --test-force-exit test/integration/*.test.js" }, "dependencies": { "@simpleworkjs/conf": "^1.2.0",