Skip to content

Commit 7459b8d

Browse files
authoredSep 15, 2022
Merge pull request #2965 from jgonggrijp/upgrade-sauce
Upgrade testing-related dependencies
2 parents a15d1af + 6d93d6f commit 7459b8d

File tree

3 files changed

+17464
-4230
lines changed

3 files changed

+17464
-4230
lines changed
 

‎.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ jobs:
66
env:
77
- DOWNGRADE=true
88
- EXTRA=false
9-
- node_js: 10
9+
- node_js: 12
1010
env:
1111
- DOWNGRADE=false
1212
- EXTRA=false
13-
- node_js: 14
13+
- node_js: 16
1414
env:
1515
- DOWNGRADE=false
1616
- EXTRA=true
@@ -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-lock.json

+17,452-4,219
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -50,18 +50,18 @@
5050
"./package.json": "./package.json"
5151
},
5252
"devDependencies": {
53-
"coveralls": "^2.11.2",
53+
"coveralls": "^3.1.1",
5454
"cpy-cli": "^3.1.1",
5555
"docco": "^0.8.0",
5656
"eslint": "^6.8.0",
5757
"eslint-plugin-import": "^2.20.1",
5858
"glob": "^7.1.6",
5959
"gzip-size-cli": "^1.0.0",
6060
"husky": "^4.2.3",
61-
"karma": "^0.13.13",
62-
"karma-qunit": "~2.0.1",
63-
"karma-sauce-launcher": "^1.2.0",
64-
"nyc": "^2.1.3",
61+
"karma": "^4.4.1",
62+
"karma-qunit": "^4.1.2",
63+
"karma-sauce-launcher": "^4.3.6",
64+
"nyc": "^15.1.0",
6565
"pretty-bytes-cli": "^1.0.0",
6666
"qunit": "2.10.1",
6767
"rollup": "^2.40.0",
@@ -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.