File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change 66 </PropertyGroup >
77 <PropertyGroup >
88 <WasmPreloadAssets >false</WasmPreloadAssets >
9- <WasmInlineBootConfig >false</WasmInlineBootConfig >
109 </PropertyGroup >
1110</Project >
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ public void CachesResourcesAfterFirstLoad()
4343 Navigate ( "/" ) ;
4444 WaitUntilLoaded ( ) ;
4545 var initialResourcesRequested = GetAndClearRequestedPaths ( ) ;
46- Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . Contains ( ".boot.js" , StringComparison . Ordinal ) ) ) ;
4746 Assert . NotEmpty ( initialResourcesRequested . Where ( path =>
4847 path . Contains ( "/dotnet.native." , StringComparison . Ordinal ) &&
4948 path . EndsWith ( ".wasm" , StringComparison . Ordinal ) ) ) ;
@@ -52,14 +51,11 @@ public void CachesResourcesAfterFirstLoad()
5251 ! path . Contains ( "/dotnet.native." , StringComparison . Ordinal ) &&
5352 path . EndsWith ( ".wasm" , StringComparison . Ordinal ) ) ) ;
5453
55- // On subsequent loads, we skip the items referenced from blazor.boot.json or dotnet.boot.js
56- // which includes .wasm (original .dll) files and dotnet.native.[fingerprint].wasm
5754 Navigate ( "about:blank" ) ;
5855 Browser . Equal ( string . Empty , ( ) => Browser . Title ) ;
5956 Navigate ( "/" ) ;
6057 WaitUntilLoaded ( ) ;
6158 var subsequentResourcesRequested = GetAndClearRequestedPaths ( ) ;
62- Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . Contains ( ".boot.js" , StringComparison . Ordinal ) ) ) ;
6359 Assert . DoesNotContain ( subsequentResourcesRequested , path =>
6460 path . Contains ( "/dotnet.native." , StringComparison . Ordinal ) &&
6561 path . EndsWith ( ".wasm" , StringComparison . Ordinal ) ) ;
Original file line number Diff line number Diff line change 2121 </ItemGroup >
2222 <PropertyGroup >
2323 <WasmPreloadAssets >false</WasmPreloadAssets >
24- <WasmInlineBootConfig >false</WasmInlineBootConfig >
2524 </PropertyGroup >
2625</Project >
You can’t perform that action at this time.
0 commit comments