This commit is contained in:
Dylan Conway
2024-05-13 12:22:03 -07:00
parent 52127b16cf
commit 763b4b502b
2 changed files with 5 additions and 0 deletions

View File

@@ -0,0 +1 @@
module.exports.foo = "bar";

View File

@@ -312,3 +312,7 @@ it.todo("import override to bun:test", async () => {
// @ts-expect-error
expect(await import("#bun_test")).toBeDefined();
});
it("should import short paths", () => {
expect(require("./LONGJA~1.JS")).toBeDefined();
});