mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
[ez] Don't output the command when running test262
Currently yarn prints out the command prior to executing it which makes test output for test262 very verbose
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
"playground": "cd packages/playground && yarn && yarn dev",
|
||||
"test": "yarn build && jest",
|
||||
"ts:analyze-trace": "scripts/ts-analyze-trace.sh",
|
||||
"test262": "yarn test262-harness --preprocessor=scripts/test262-preprocessor.js",
|
||||
"test262": "yarn run --silent test262-harness --preprocessor=scripts/test262-preprocessor.js",
|
||||
"test262:all": "scripts/test262-all.sh"
|
||||
},
|
||||
"repository": {
|
||||
|
||||
@@ -7,5 +7,5 @@ set -eo pipefail
|
||||
|
||||
for dir in test262/test/*;
|
||||
do
|
||||
yarn test262 $dir/**/*.js;
|
||||
yarn run --silent test262 $dir/**/*.js;
|
||||
done
|
||||
Reference in New Issue
Block a user