Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
chore: separate individual test scripts (#1759)
Browse files Browse the repository at this point in the history
  • Loading branch information
ignatiusmb committed Sep 20, 2022
1 parent 6efa7cf commit 332c7d9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,11 @@
"fix": "npm run lint:style -- -w && npm run lint:code -- --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"test": "npm run build && node test/test.js node14 no-npm && node test/test.js node12 no-npm && node test/test.js node10 no-npm && node test/test.js host only-npm"
"test": "npm run build && npm run test:14 && npm run test:12 && npm run test:10 && npm run test:host",
"test:10": "node test/test.js node10 no-npm",
"test:12": "node test/test.js node12 no-npm",
"test:14": "node test/test.js node14 no-npm",
"test:host": "node test/test.js host only-npm"
},
"greenkeeper": {
"emails": false,
Expand Down

0 comments on commit 332c7d9

Please sign in to comment.