Skip to content

Commit 0f70380

Browse files
author
John Luo
authored
Quarantine tests (#22919)
1 parent 28b3ab8 commit 0f70380

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/Components/test/E2ETest/Tests/BootResourceCachingTest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void CachesResourcesAfterFirstLoad()
4848
var initialResourcesRequested = GetAndClearRequestedPaths();
4949
Assert.NotEmpty(initialResourcesRequested.Where(path => path.EndsWith("/blazor.boot.json")));
5050
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")));
5252
Assert.NotEmpty(initialResourcesRequested.Where(path => path.EndsWith(".js")));
5353
Assert.NotEmpty(initialResourcesRequested.Where(path => path.EndsWith(".dll")));
5454

@@ -66,6 +66,7 @@ public void CachesResourcesAfterFirstLoad()
6666
}
6767

6868
[Fact]
69+
[QuarantinedTest]
6970
public void IncrementallyUpdatesCache()
7071
{
7172
// Perform a first load to populate the cache

src/Hosting/test/FunctionalTests/WebHostBuilderTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ public WebHostBuilderTests(ITestOutputHelper output) : base(output) { }
2020
.WithTfms(Tfm.Net50);
2121

2222
[ConditionalTheory]
23+
[QuarantinedTest]
2324
[MemberData(nameof(TestVariants))]
2425
public async Task InjectedStartup_DefaultApplicationNameIsEntryAssembly(TestVariant variant)
2526
{

0 commit comments

Comments
 (0)