diff options
Diffstat (limited to 'integration/bunjs-only-snippets/resolve.test.js')
-rw-r--r-- | integration/bunjs-only-snippets/resolve.test.js | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/integration/bunjs-only-snippets/resolve.test.js b/integration/bunjs-only-snippets/resolve.test.js index 0a4ac314a..f86d31980 100644 --- a/integration/bunjs-only-snippets/resolve.test.js +++ b/integration/bunjs-only-snippets/resolve.test.js @@ -3,46 +3,46 @@ import { mkdirSync, writeFileSync } from "fs"; import { join } from "path"; it("import.meta.resolve", async () => { - expect(await import.meta.resolve("./resolve.test.js")).toBe(import.meta.url); + expect(await import.meta.resolve("./resolve.test.js")).toBe(import.meta.path); - expect(await import.meta.resolve("./resolve.test.js", import.meta.url)).toBe( - import.meta.url + expect(await import.meta.resolve("./resolve.test.js", import.meta.path)).toBe( + import.meta.path ); expect( // optional second param can be any path, including a dir await import.meta.resolve( "./bunjs-only-snippets/resolve.test.js", - join(import.meta.url, "../") + join(import.meta.path, "../") ) - ).toBe(import.meta.url); + ).toBe(import.meta.path); // can be a package path - expect((await import.meta.resolve("react", import.meta.url)).length > 0).toBe( - true - ); + expect( + (await import.meta.resolve("react", import.meta.path)).length > 0 + ).toBe(true); // file extensions are optional - expect(await import.meta.resolve("./resolve.test")).toBe(import.meta.url); + expect(await import.meta.resolve("./resolve.test")).toBe(import.meta.path); // works with tsconfig.json "paths" expect(await import.meta.resolve("foo/bar")).toBe( - join(import.meta.url, "../baz.js") + join(import.meta.path, "../baz.js") ); // works with package.json "exports" writePackageJSONExportsFixture(); expect(await import.meta.resolve("package-json-exports/baz")).toBe( - join(import.meta.url, "../node_modules/package-json-exports/foo/bar.js") + join(import.meta.path, "../node_modules/package-json-exports/foo/bar.js") ); // works with TypeScript compiler edgecases like: // - If the file ends with .js and it doesn't exist, try again with .ts and .tsx expect(await import.meta.resolve("./resolve-typescript-file.js")).toBe( - join(import.meta.url, "../resolve-typescript-file.tsx") + join(import.meta.path, "../resolve-typescript-file.tsx") ); expect(await import.meta.resolve("./resolve-typescript-file.tsx")).toBe( - join(import.meta.url, "../resolve-typescript-file.tsx") + join(import.meta.path, "../resolve-typescript-file.tsx") ); // throws a ResolveError on failure @@ -51,7 +51,7 @@ it("import.meta.resolve", async () => { throw new Error("Test failed"); } catch (exception) { expect(exception instanceof ResolveError).toBe(true); - expect(exception.referrer).toBe(import.meta.url); + expect(exception.referrer).toBe(import.meta.path); expect(exception.name).toBe("ResolveError"); } }); @@ -60,14 +60,14 @@ it("import.meta.resolve", async () => { // and expects a directory instead of a filepath it("Bun.resolve", async () => { expect(await Bun.resolve("./resolve.test.js", import.meta.dir)).toBe( - import.meta.url + import.meta.path ); }); // synchronous it("Bun.resolveSync", () => { expect(Bun.resolveSync("./resolve.test.js", import.meta.dir)).toBe( - import.meta.url + import.meta.path ); }); |