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"); } });