mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 11:29:02 +00:00
6 lines
201 B
TypeScript
6 lines
201 B
TypeScript
import { test, expect } from "bun:test";
|
|
import path from "path";
|
|
test("pathToFileURL doesn't leak memory", () => {
|
|
expect([path.join(import.meta.dir, "pathToFileURL-leak-fixture.js")]).toRun();
|
|
});
|