-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_runner: make mock_loader not confuse CJS and ESM resolution
PR-URL: #53846 Fixes: #53807 Reviewed-By: Antoine du Hamel <[email protected]>
- Loading branch information
Showing
4 changed files
with
39 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export let string = 'original esm string'; |
8 changes: 8 additions & 0 deletions
8
test/fixtures/module-mocking/wrong-import-after-module-mocking.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { mock } from 'node:test'; | ||
|
||
try { | ||
mock.module?.('Whatever, this is not significant', { namedExports: {} }); | ||
} catch {} | ||
|
||
const { string } = await import('./basic-esm-without-extension'); | ||
console.log(`Found string: ${string}`); // prints 'original esm string' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters