summaryrefslogtreecommitdiff
path: root/tests/testdata/coverage/no_internal_node_code_test.ts
blob: dc53e0c5292a3ec16ca170fab1cfd1f88ee34a01 (plain)
1
2
3
4
5
6
7
8
import * as path from "node:path";

Deno.test(function test() {
  const res = path.join("foo", "bar");
  if (!res.includes("foo")) {
    throw new Error("fail");
  }
});