diff options
author | 2023-02-03 11:35:24 -0800 | |
---|---|---|
committer | 2023-02-03 11:35:24 -0800 | |
commit | 3933ccab3be13e349ec4edad4d8ada8669cf3889 (patch) | |
tree | 7081a28d097e8664673dead25608df6f5aee0b57 | |
parent | 92255d56c896588d797d9147fc963182b5d7b214 (diff) | |
download | bun-3933ccab3be13e349ec4edad4d8ada8669cf3889.tar.gz bun-3933ccab3be13e349ec4edad4d8ada8669cf3889.tar.zst bun-3933ccab3be13e349ec4edad4d8ada8669cf3889.zip |
Attempt to debug annotations 2
-rw-r--r-- | packages/bun-test/src/runner.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/bun-test/src/runner.ts b/packages/bun-test/src/runner.ts index 938304612..256d0c87f 100644 --- a/packages/bun-test/src/runner.ts +++ b/packages/bun-test/src/runner.ts @@ -83,7 +83,4 @@ for (const path of findTests(resolve(cwd, "test/bun.js"))) { tests.push(runTest(path).catch(console.error)); } await Promise.allSettled(tests); - -if (isAction) { - action.setFailed("Found errors"); -} +process.exit(failed ? 1 : 0); |