Files
bun.sh/test/js/third_party/msw/msw.test.ts
2024-09-03 21:32:52 -07:00

8 lines
198 B
TypeScript

import { expect, it } from "bun:test";
import "harness";
import * as path from "node:path";
it("works", async () => {
expect([path.join(import.meta.dirname, "msw.fixture.ts")]).toRun("2\n");
});