Add separate npm script for jest watch

This commit is contained in:
Jeff 2024-06-04 20:57:30 -04:00
parent 56aaae38c1
commit 8400f130eb
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"test": "jest --watch --config=jest.config.ts "
"watch": "jest --watch --config=jest.config.ts",
"test": "jest --config=jest.config.ts"
},
"dependencies": {
"@remix-run/express": "^2.9.1",