We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6953bab commit 347d204Copy full SHA for 347d204
1 file changed
tests/integration/rsc-mf/tests/index.test.ts
@@ -480,6 +480,10 @@ function runTests({ mode }: TestConfig) {
480
),
481
).toBe(true);
482
expect(runtimeInitSource).toContain('registerRemoteServerCallback');
483
+ expect(runtimeInitSource).toContain("import('./registerServerCallback')");
484
+ expect(runtimeInitSource).not.toContain(
485
+ "from './registerServerCallback'",
486
+ );
487
expect(runtimeRegisterSource).toContain('setServerCallback');
488
expect(moduleFederationConfigSource).toContain(
489
'CALLBACK_BOOTSTRAP_IMPORT',
0 commit comments