enable inspect flag on test watch

This commit is contained in:
MapleLeaf
2021-12-22 12:48:05 -06:00
parent 765c6fadbb
commit 067b9b43a1

View File

@@ -18,7 +18,7 @@
"lint-fix": "pnpm lint -- --fix", "lint-fix": "pnpm lint -- --fix",
"format": "prettier --write .", "format": "prettier --write .",
"test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js", "test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"test-watch": "pnpm test -- --watch", "test-watch": "node --experimental-vm-modules --no-warnings --inspect-brk node_modules/jest/bin/jest.js --watch --runInBand",
"coverage": "pnpm test -- --coverage", "coverage": "pnpm test -- --coverage",
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"
}, },