1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-19 12:16:17 -05:00
denoland-deno/tests/unit_node/path_test.ts

17 lines
562 B
TypeScript
Raw Normal View History

2025-01-01 04:12:39 +09:00
// Copyright 2018-2025 the Deno authors. MIT license.
import path from "node:path";
import posix from "node:path/posix";
import win32 from "node:path/win32";
import { assertStrictEquals } from "@std/assert";
Deno.test("[node/path] posix and win32 objects", () => {
assertStrictEquals(path.posix, posix);
assertStrictEquals(path.win32, win32);
assertStrictEquals(path.posix, path.posix.posix);
assertStrictEquals(path.win32, path.posix.win32);
assertStrictEquals(path.posix, path.win32.posix);
assertStrictEquals(path.win32, path.win32.win32);
});