mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
8 lines
198 B
TypeScript
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");
|
|
});
|