8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { describe, expect, test } from "bun:test";
|
|
|
|
describe.each(["foo", "bar"])("%s", () => {
|
|
test.only("works", () => {
|
|
expect(1).toBe(1);
|
|
});
|
|
});
|