File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Components/test/E2ETest/Tests
Hosting/test/FunctionalTests Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ public void CachesResourcesAfterFirstLoad()
48
48
var initialResourcesRequested = GetAndClearRequestedPaths ( ) ;
49
49
Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/blazor.boot.json" ) ) ) ;
50
50
Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.wasm" ) ) ) ;
51
- Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.timezones.dat" ) ) ) ;
51
+ Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( "/dotnet.timezones.dat" ) ) ) ;
52
52
Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( ".js" ) ) ) ;
53
53
Assert . NotEmpty ( initialResourcesRequested . Where ( path => path . EndsWith ( ".dll" ) ) ) ;
54
54
@@ -66,6 +66,7 @@ public void CachesResourcesAfterFirstLoad()
66
66
}
67
67
68
68
[ Fact ]
69
+ [ QuarantinedTest ]
69
70
public void IncrementallyUpdatesCache ( )
70
71
{
71
72
// Perform a first load to populate the cache
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ public WebHostBuilderTests(ITestOutputHelper output) : base(output) { }
20
20
. WithTfms ( Tfm . Net50 ) ;
21
21
22
22
[ ConditionalTheory ]
23
+ [ QuarantinedTest ]
23
24
[ MemberData ( nameof ( TestVariants ) ) ]
24
25
public async Task InjectedStartup_DefaultApplicationNameIsEntryAssembly ( TestVariant variant )
25
26
{
You can’t perform that action at this time.
0 commit comments