-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: streamline test scripts in regard of without-intl and run more …
…tests for without-intl case (#3453) * test: streamline tests in regard of without-intl * fix wf
- Loading branch information
Showing
3 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,19 +65,19 @@ | |
"build:node": "npx [email protected] index-fetch.js --bundle --platform=node --outfile=undici-fetch.js --define:esbuildDetection=1 --keep-names && node scripts/strip-comments.js", | ||
"prebuild:wasm": "node build/wasm.js --prebuild", | ||
"build:wasm": "node build/wasm.js --docker", | ||
"generate-pem": "node scripts/generate-pem.js", | ||
"lint": "standard | snazzy", | ||
"lint:fix": "standard --fix | snazzy", | ||
"test": "npm run test:javascript && cross-env NODE_V8_COVERAGE= npm run test:typescript", | ||
"test:javascript": "node scripts/generate-pem && npm run test:unit && npm run test:node-fetch && npm run test:cache && npm run test:interceptors && npm run test:fetch && npm run test:cookies && npm run test:eventsource && npm run test:wpt && npm run test:websocket && npm run test:node-test && npm run test:jest", | ||
"test:javascript:withoutintl": "node scripts/generate-pem && npm run test:unit && npm run test:node-fetch && npm run test:fetch:nobuild && npm run test:cache && npm run test:interceptors && npm run test:cookies && npm run test:eventsource:nobuild && npm run test:wpt:withoutintl && npm run test:node-test", | ||
"test:javascript": "npm run test:javascript:no-jest && npm run test:jest", | ||
"test:javascript:no-jest": "npm run generate-pem && npm run test:unit && npm run test:node-fetch && npm run test:cache && npm run test:interceptors && npm run test:fetch && npm run test:cookies && npm run test:eventsource && npm run test:wpt && npm run test:websocket && npm run test:node-test", | ||
"test:javascript:without-intl": "npm run test:javascript:no-jest", | ||
"test:busboy": "borp -p \"test/busboy/*.js\"", | ||
"test:cache": "borp -p \"test/cache/*.js\"", | ||
"test:cookies": "borp -p \"test/cookie/*.js\"", | ||
"test:eventsource": "npm run build:node && npm run test:eventsource:nobuild", | ||
"test:eventsource:nobuild": "borp --expose-gc -p \"test/eventsource/*.js\"", | ||
"test:eventsource": "npm run build:node && borp --expose-gc -p \"test/eventsource/*.js\"", | ||
"test:fuzzing": "node test/fuzzing/fuzzing.test.js", | ||
"test:fetch": "npm run build:node && npm run test:fetch:nobuild", | ||
"test:fetch:nobuild": "borp --timeout 180000 --expose-gc --concurrency 1 -p \"test/fetch/*.js\" && npm run test:webidl && npm run test:busboy", | ||
"test:fetch": "npm run build:node && borp --timeout 180000 --expose-gc --concurrency 1 -p \"test/fetch/*.js\" && npm run test:webidl && npm run test:busboy", | ||
"test:interceptors": "borp -p \"test/interceptors/*.js\"", | ||
"test:jest": "cross-env NODE_V8_COVERAGE= jest", | ||
"test:unit": "borp --expose-gc -p \"test/*.js\"", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters