Skip to content

Commit

Permalink
Add failing test for request for ... is not yet fulfilled
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Oct 23, 2024
1 parent 22029ba commit d62aff4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions e2e/native-esm/__tests__/native-esm.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,10 @@ test('handle dynamic imports of the same module in parallel', async () => {
expect(first(2)).toBe(4);
});

test('import same file with child imports in parallel indirectly', async () => {
await Promise.all([import('../file1.js'), import('../file2.js')]);
});

test('varies module cache by query', () => {
expect(staticImportedStatefulWithQuery).not.toBe(
staticImportedStatefulWithAnotherQuery,
Expand Down
1 change: 1 addition & 0 deletions e2e/native-esm/file1.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './sharedImport.js';
1 change: 1 addition & 0 deletions e2e/native-esm/file2.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './sharedImport.js';
1 change: 1 addition & 0 deletions e2e/native-esm/sharedImport.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './sharedImportDep.js';
1 change: 1 addition & 0 deletions e2e/native-esm/sharedImportDep.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './index.js';

0 comments on commit d62aff4

Please sign in to comment.