mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
fix(std/node): resolve files in symlinked directories (#8840)
This commit is contained in:
parent
39bbbbce70
commit
4c4791b589
4 changed files with 11 additions and 10 deletions
|
@ -69,3 +69,8 @@ Deno.test("requireStack", function () {
|
|||
assertStringIncludes(e.stack, "/tests/cjs/cjs_throw.js");
|
||||
}
|
||||
});
|
||||
|
||||
Deno.test("requireFileInSymlinkDir", () => {
|
||||
const { C } = require("./tests/cjs/dir");
|
||||
assertEquals(C, "C");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue