Skip to content

Commit 6d93d6f

Browse files
committedSep 15, 2022
Reorganize test scripts to avoid rollup config coverage report
1 parent f238610 commit 6d93d6f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
 

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ before_script:
2121
- "[ $DOWNGRADE = false ] || npm install rollup@1"
2222
script:
2323
- "[ $EXTRA = false ] || npm run lint"
24+
- npm run prepare-tests
2425
- "[ $EXTRA = true ] || npm run test-node"
2526
- "[ $EXTRA = false ] || npm run coveralls"
2627
- "[ $EXTRA = false ] || npm run test-browser"

‎package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@
7171
"colors@>1.4.0": "1.4.0"
7272
},
7373
"scripts": {
74-
"test": "npm run lint && npm run test-node",
75-
"coverage": "nyc npm run test-node && nyc report",
74+
"test": "npm run lint && npm run prepare-tests && npm run test-node",
75+
"coverage": "npm run prepare-tests && nyc npm run test-node && nyc report",
7676
"coveralls": "nyc npm run test-node && nyc report --reporter=text-lcov | coveralls",
7777
"lint": "eslint modules/*.js test/*.js",
78-
"test-node": "npm run prepare-tests && qunit test/",
79-
"test-browser": "npm run prepare-tests && npm i karma-phantomjs-launcher && karma start",
78+
"test-node": "qunit test/",
79+
"test-browser": "npm i karma-phantomjs-launcher && karma start",
8080
"bundle": "rollup -c && eslint underscore-umd.js && rollup -c rollup.config2.js",
8181
"bundle-treeshake": "cd test-treeshake && rollup --config",
8282
"prepare-tests": "npm run bundle && npm run bundle-treeshake",

0 commit comments

Comments
 (0)
Please sign in to comment.