From dff31d80eb1ad6fdf6acfa56d9d705ffb8a3469e Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 15 Nov 2022 14:06:49 -0500 Subject: [PATCH] [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 --- compiler/forget/package.json | 2 +- compiler/forget/scripts/test262-all.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/forget/package.json b/compiler/forget/package.json index 516c9a6f05..48654b96fe 100644 --- a/compiler/forget/package.json +++ b/compiler/forget/package.json @@ -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": { diff --git a/compiler/forget/scripts/test262-all.sh b/compiler/forget/scripts/test262-all.sh index 34a1cf98b5..e1b84ae7d9 100755 --- a/compiler/forget/scripts/test262-all.sh +++ b/compiler/forget/scripts/test262-all.sh @@ -7,5 +7,5 @@ set -eo pipefail for dir in test262/test/*; do - yarn test262 $dir/**/*.js; + yarn run --silent test262 $dir/**/*.js; done \ No newline at end of file