mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 20:39:05 +00:00
8 lines
203 B
TypeScript
8 lines
203 B
TypeScript
import "harness";
|
|
import { expect, it } from "bun:test";
|
|
import * as path from "node:path";
|
|
|
|
it("works", async () => {
|
|
expect([path.join(import.meta.dirname, "_fixtures", "msw.ts")]).toRun("2\n");
|
|
});
|