Files
bun-src/test/regression/issue/23865.fixture.ts
T

8 lines
152 B
TypeScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
// Should not crash
test("abc", () => {
expect(async () => {
await Bun.sleep(100);
throw new Error("uh oh!");
}).toThrow("uh oh!");
}, 50);