This commit is contained in:
Jarred Sumner
2024-06-22 21:46:55 -07:00
committed by Zack Radisic
parent 8cecfda535
commit 16b6d0905c
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
import { test, expect } from "bun:test";
import "harness";
// https://github.com/oven-sh/bun/issues/12070
test("bun repl", () => {
expect(["repl", "-e", "process.exit(0)"]).toRun();
});