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.
1 parent f6fafb3 commit 2498d00Copy full SHA for 2498d00
Makefile
@@ -39,3 +39,6 @@ build-watch: ## build with watch
39
40
test: ## run test
41
${DOCKER_RUN_NODE} yarn test
42
+
43
+test--watch: ## run test
44
+ ${DOCKER_RUN_NODE} yarn test:watch
package.json
@@ -14,6 +14,7 @@
14
"lint": "eslint .",
15
"start": "tsdx watch",
16
"test": "tsdx test --runInBand",
17
+ "test:watch": "tsdx test --watchAll",
18
"prepare": "yarn build",
19
"prepublishOnly": "yarn lint && yarn test"
20
},
0 commit comments