aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/import-meta.test.js
diff options
context:
space:
mode:
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);
});