Skip to content

Commit 18f3b0c

Browse files
committed
remove unnecessary file:// check
1 parent d04fb81 commit 18f3b0c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

packages/jest-runtime/src/index.ts

+4-6
Original file line numberDiff line numberDiff line change
@@ -520,12 +520,10 @@ export default class Runtime {
520520
initializeImportMeta: (meta: JestImportMeta) => {
521521
meta.url = pathToFileURL(modulePath).href;
522522

523-
if (meta.url.startsWith('file://')) {
524-
// @ts-expect-error Jest uses @types/node@16. Will be fixed when updated to @types/[email protected]
525-
meta.filename = fileURLToPath(meta.url);
526-
// @ts-expect-error Jest uses @types/node@16. Will be fixed when updated to @types/[email protected]
527-
meta.dirname = path.dirname(meta.filename);
528-
}
523+
// @ts-expect-error Jest uses @types/node@16. Will be fixed when updated to @types/[email protected]
524+
meta.filename = fileURLToPath(meta.url);
525+
// @ts-expect-error Jest uses @types/node@16. Will be fixed when updated to @types/[email protected]
526+
meta.dirname = path.dirname(meta.filename);
529527

530528
let jest = this.jestObjectCaches.get(modulePath);
531529

0 commit comments

Comments
 (0)