summaryrefslogtreecommitdiff
path: root/tests/unit_node/path_test.ts
blob: 0313c60edaa0b36d5b896483796859f72d162c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018-2024 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 "@std/assert/mod.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);
});