summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/path_test.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-07-05 16:13:34 +0900
committerGitHub <noreply@github.com>2023-07-05 16:13:34 +0900
commitcd2525d4cff4e18b1e3e7d29458079942ba2b6c5 (patch)
treec3f519aba59c57fc43bc30e3c69f12a0a80cc5b0 /cli/tests/unit_node/path_test.ts
parent1ac5fddf54a828f1372e1ff10559d1a4bc70e5c9 (diff)
test(ext/node): clean up node:path test cases (#19610)
Diffstat (limited to 'cli/tests/unit_node/path_test.ts')
-rw-r--r--cli/tests/unit_node/path_test.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/cli/tests/unit_node/path_test.ts b/cli/tests/unit_node/path_test.ts
new file mode 100644
index 000000000..48298afec
--- /dev/null
+++ b/cli/tests/unit_node/path_test.ts
@@ -0,0 +1,16 @@
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
+
+import path from "node:path";
+import posix from "node:path/posix";
+import win32 from "node:path/win32";
+
+import { assertStrictEquals } from "../../../test_util/std/testing/asserts.ts";
+
+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);
+});