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

14 lines
217 B
TypeScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
import { beforeAll, describe, it } from "bun:test";
describe("thing", () => {
let thing;
beforeAll(() => {
thing = () => console.log("hi!");
});
it.only("does one thing", () => {
thing();
});
});