diff options
author | 2022-06-22 23:21:48 -0700 | |
---|---|---|
committer | 2022-06-22 23:21:48 -0700 | |
commit | 729d445b6885f69dd2c6355f38707bd42851c791 (patch) | |
tree | f87a7c408929ea3f57bbb7ace380cf869da83c0e /test/bun.js/import-meta.test.js | |
parent | 25f820c6bf1d8ec6d444ef579cc036b8c0607b75 (diff) | |
download | bun-jarred/rename.tar.gz bun-jarred/rename.tar.zst bun-jarred/rename.zip |
change the directory structurejarred/rename
Diffstat (limited to '')
-rw-r--r-- | test/bun.js/import-meta.test.js (renamed from integration/bunjs-only-snippets/import-meta.test.js) | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/integration/bunjs-only-snippets/import-meta.test.js b/test/bun.js/import-meta.test.js index 0520be3a5..0e2faa903 100644 --- a/integration/bunjs-only-snippets/import-meta.test.js +++ b/test/bun.js/import-meta.test.js @@ -25,11 +25,9 @@ it("import.meta.require", () => { }); it("import.meta.dir", () => { - expect(dir.endsWith("/bun/integration/bunjs-only-snippets")).toBe(true); + expect(dir.endsWith("/bun/test/bun.js")).toBe(true); }); it("import.meta.path", () => { - expect( - path.endsWith("/bun/integration/bunjs-only-snippets/import-meta.test.js") - ).toBe(true); + expect(path.endsWith("/bun/test/bun.js/import-meta.test.js")).toBe(true); }); |