Skip to content

Commit 92e6475

Browse files
committed
feat: add type check to testing
1 parent 40344fe commit 92e6475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"description": "Algorithms and data structures implemented in JavaScript",
1010
"scripts": {
1111
"test": "node --test --test-reporter dot",
12-
"full-test": "concurrently \"npm run lint-test\" \"npm run unit-test-dot\"",
12+
"full-test": "concurrently \"npm run type-check\" \"npm test\" \"npm run lint-test\"",
1313
"unit-test-spec": "node --test --test-reporter spec",
1414
"unit-test-dot": "node --test --test-reporter dot",
1515
"unit-test-tap": "node --test --test-reporter tap",
1616
"lint-test": "standard .",
17-
"type-test": "tsc",
17+
"type-check": "tsc",
1818
"build-jsdoc": "./node_modules/.bin/jsdoc --readme ./README.md --configure ./jsdoc.json --destination ./docs --recurse .",
1919
"prepare": "husky install"
2020
},

0 commit comments

Comments
 (0)