[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:
Lauren Tan
2022-11-15 14:06:49 -05:00
parent ec64edae21
commit dff31d80eb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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": {
+1 -1
View File
@@ -7,5 +7,5 @@ set -eo pipefail
for dir in test262/test/*;
do
yarn test262 $dir/**/*.js;
yarn run --silent test262 $dir/**/*.js;
done