We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1361d9 commit 4d81833Copy full SHA for 4d81833
.gitignore
@@ -4,3 +4,4 @@ package-lock.json
4
data.json
5
dist
6
coverage
7
+test.js
package.json
@@ -36,7 +36,7 @@
36
"scripts": {
37
"build": "rm -rf dist && tsc && for i in dist/mod.*; do mv $i \"${i/mod/index}\"; done",
38
"prepare": "npm run build",
39
- "test": "npm run build && jest",
+ "test": "npm run build && tsc test.ts && jest test.js",
40
"test:coverage": "npm run build && jest --coverage",
41
"test:coveralls": "npm run build && jest --coverage --coverageReporters=text-lcov | coveralls"
42
},
0 commit comments