Files

9 lines
161 B
TypeScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
import { beforeEach, it, expect } from "bun:test";
beforeEach(async () => {
await Bun.sleep(100);
throw 5;
});
it("test 0", () => {
expect(1).toBe(0);
});