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

13 lines
299 B
TypeScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
import { describe, it } from "bun:test";
describe("foo", () => {
it("should not run", () => {
console.log("foo: this test should not run");
});
describe("inner describe", () => {
it("should not run", () => {
console.log("inner foo: this test should not run");
});
});
});