mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { beforeEach, test } from "bun:test";
|
|
|
|
beforeEach(() => {
|
|
throw new Error("beforeEach");
|
|
});
|
|
|
|
test("test 0", () => {});
|
|
test("test 1", () => {});
|