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