Skip to content

Commit 4d81833

Browse files
committedSep 14, 2020
Fix CI
1 parent e1361d9 commit 4d81833

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ package-lock.json
44
data.json
55
dist
66
coverage
7+
test.js

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"scripts": {
3737
"build": "rm -rf dist && tsc && for i in dist/mod.*; do mv $i \"${i/mod/index}\"; done",
3838
"prepare": "npm run build",
39-
"test": "npm run build && jest",
39+
"test": "npm run build && tsc test.ts && jest test.js",
4040
"test:coverage": "npm run build && jest --coverage",
4141
"test:coveralls": "npm run build && jest --coverage --coverageReporters=text-lcov | coveralls"
4242
},

0 commit comments

Comments
 (0)
Please sign in to comment.