File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Components/test/E2ETest/Tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public void CachesResourcesAfterFirstLoad()
4747 Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/blazor.boot.json" ) ) ) ;
4848 Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.wasm" ) ) ) ;
4949 Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.timezones.dat" ) ) ) ;
50- Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( ".js?customizedbootresource=true " ) ) ) ;
50+ Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( ".js" ) ) ) ;
5151 Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( ".dll" ) ) ) ;
5252
5353 // On subsequent loads, we skip the items referenced from blazor.boot.json
@@ -59,7 +59,7 @@ public void CachesResourcesAfterFirstLoad()
5959 Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/blazor.boot.json" ) ) ) ;
6060 Assert . Empty ( subsequentResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.wasm" ) ) ) ;
6161 Assert . Empty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.timezones.dat" ) ) ) ;
62- Assert . NotEmpty ( subsequentResourcesRequested . Where ( path => path . EndsWith ( ".js?customizedbootresource=true " ) ) ) ;
62+ Assert . NotEmpty ( subsequentResourcesRequested . Where ( path => path . EndsWith ( ".js" ) ) ) ;
6363 Assert . Empty ( subsequentResourcesRequested . Where ( path => path . EndsWith ( ".dll" ) ) ) ;
6464 }
6565
You can’t perform that action at this time.
0 commit comments