Files
2026-08-27 21:09:14 +00:00

9 lines
161 B
TypeScript

import { beforeEach, it, expect } from "bun:test";
beforeEach(async () => {
await Bun.sleep(100);
throw 5;
});
it("test 0", () => {
expect(1).toBe(0);
});