File tree 3 files changed +0
-10
lines changed
3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 4
4
<!-- Avoid source build issues with WebAssembly -->
5
5
<ExcludeFromSourceOnlyBuild >true</ExcludeFromSourceOnlyBuild >
6
6
</PropertyGroup >
7
- <PropertyGroup >
8
- <WasmInlineBootConfig >false</WasmInlineBootConfig >
9
- </PropertyGroup >
10
7
</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 19
19
<_Parameter2 >true</_Parameter2 >
20
20
</AssemblyAttribute >
21
21
</ItemGroup >
22
- <PropertyGroup >
23
- <WasmInlineBootConfig >false</WasmInlineBootConfig >
24
- </PropertyGroup >
25
22
</Project >
You can’t perform that action at this time.
0 commit comments