chore: respect jest params in npm run wtest (#3085)

This commit is contained in:
Yury Semikhatsky 2020-07-22 08:57:54 -07:00 committed by GitHub
parent 2b0b0a9119
commit 6e75533c63
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,9 +9,9 @@
"node": ">=10.15.0" "node": ">=10.15.0"
}, },
"scripts": { "scripts": {
"ctest": "cross-env BROWSER=chromium npm run jest", "ctest": "cross-env BROWSER=chromium jest",
"ftest": "cross-env BROWSER=firefox npm run jest", "ftest": "cross-env BROWSER=firefox jest",
"wtest": "cross-env BROWSER=webkit npm run jest", "wtest": "cross-env BROWSER=webkit jest",
"test": "npm run ctest && npm run ftest && npm run wtest", "test": "npm run ctest && npm run ftest && npm run wtest",
"eslint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe --ext js,ts ./src || eslint --ext js,ts ./src", "eslint": "[ \"$CI\" = true ] && eslint --quiet -f codeframe --ext js,ts ./src || eslint --ext js,ts ./src",
"tsc": "tsc -p .", "tsc": "tsc -p .",