Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
dylan-conway committed May 13, 2024
1 parent 52127b1 commit 763b4b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/js/bun/resolve/longjavascriptfilename.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports.foo = "bar";
4 changes: 4 additions & 0 deletions test/js/bun/resolve/resolve.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

0 comments on commit 763b4b5

Please sign in to comment.