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 6
6
</PropertyGroup >
7
7
<PropertyGroup >
8
8
<WasmPreloadAssets >false</WasmPreloadAssets >
9
- <WasmInlineBootConfig >false</WasmInlineBootConfig >
10
9
</PropertyGroup >
11
10
</Project >
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ public void CachesResourcesAfterFirstLoad()
43
43
Navigate ( "/" ) ;
44
44
WaitUntilLoaded ( ) ;
45
45
var initialResourcesRequested = GetAndClearRequestedPaths ( ) ;
46
- Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . Contains ( ".boot.js" , StringComparison . Ordinal ) ) ) ;
47
46
Assert . NotEmpty ( initialResourcesRequested . Where ( path =>
48
47
path . Contains ( "/dotnet.native." , StringComparison . Ordinal ) &&
49
48
path . EndsWith ( ".wasm" , StringComparison . Ordinal ) ) ) ;
@@ -52,14 +51,11 @@ public void CachesResourcesAfterFirstLoad()
52
51
! path . Contains ( "/dotnet.native." , StringComparison . Ordinal ) &&
53
52
path . EndsWith ( ".wasm" , StringComparison . Ordinal ) ) ) ;
54
53
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
57
54
Navigate ( "about:blank" ) ;
58
55
Browser . Equal ( string . Empty , ( ) => Browser . Title ) ;
59
56
Navigate ( "/" ) ;
60
57
WaitUntilLoaded ( ) ;
61
58
var subsequentResourcesRequested = GetAndClearRequestedPaths ( ) ;
62
- Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . Contains ( ".boot.js" , StringComparison . Ordinal ) ) ) ;
63
59
Assert . DoesNotContain ( subsequentResourcesRequested , path =>
64
60
path . Contains ( "/dotnet.native." , StringComparison . Ordinal ) &&
65
61
path . EndsWith ( ".wasm" , StringComparison . Ordinal ) ) ;
Original file line number Diff line number Diff line change 21
21
</ItemGroup >
22
22
<PropertyGroup >
23
23
<WasmPreloadAssets >false</WasmPreloadAssets >
24
- <WasmInlineBootConfig >false</WasmInlineBootConfig >
25
24
</PropertyGroup >
26
25
</Project >
You can’t perform that action at this time.
0 commit comments