Skip to content

Commit c461792

Browse files
Copilotsroussey
authored andcommitted
fix: prevent bun test exit code 1 when all tests pass (#67)
1 parent 7c4cdd1 commit c461792

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/cli/runCommand.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
import { afterEach, afterAll, describe, expect, it, mock } from "bun:test";
1+
import { afterAll, afterEach, describe, expect, it, mock } from "bun:test";
22
import { runCommand } from "./runCommand";
33

44
describe("runCommand", () => {
55
afterEach(() => {
66
process.exitCode = 0;
77
});
8+
89
afterAll(() => {
910
process.exitCode = 0;
1011
});

0 commit comments

Comments
 (0)