when i use npm run test it run the jest in mode but i only want to run it once, is there a way to avoid the jest running in watch mode by default
"scripts": {
"start": "node src/server.js",
"watch": "nodemon src/server.js",
"test": "jest ",
"test-watch": "jest --watch",
"cluster": "pm2 start src/server.js -i max"
}
i did try to go through the docs but things aren’t much clear
thanks for helping