We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cea6362 + 4dc4244 commit d5e5881Copy full SHA for d5e5881
package.json
@@ -26,6 +26,10 @@
26
},
27
"scripts": {
28
"lint": "npx eslint . --color --max-warnings=0 && echo '✔ Your code looks good.'",
29
- "test": "jest"
+ "jest": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",
30
+ "jest:bruteforce": "BRUTEFORCE=true node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug",
31
+ "jest:watch": "node --experimental-vm-modules ./node_modules/.bin/jest --no-cache --ci --color --detectOpenHandles --forceExit --runInBand --debug --watchAll",
32
+ "test": "npm run jest",
33
+ "test:all": "npm run lint && npm run jest && echo 'Done.'"
34
}
35
0 commit comments