mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
import { describe, test } from "bun:test";
|
|
import assert from "node:assert";
|
|
|
|
describe("path.posix", () => {
|
|
test("exists", () => {
|
|
assert.strictEqual(require("path/posix"), require("path").posix);
|
|
});
|
|
});
|