@@ -23,9 +23,8 @@ public BlazorWasmTemplateTest(ProjectFactoryFixture projectFactory)
23
23
24
24
public override string ProjectType { get ; } = "blazorwasm" ;
25
25
26
- [ Theory ]
26
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
27
27
[ InlineData ( BrowserKind . Chromium ) ]
28
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
29
28
public async Task BlazorWasmStandaloneTemplate_Works ( BrowserKind browserKind )
30
29
{
31
30
var project = await CreateBuildPublishAsync ( "blazorstandalone" + browserKind ) ;
@@ -60,9 +59,8 @@ private static async Task<IPage> NavigateToPage(IBrowserContext browser, string
60
59
return page ;
61
60
}
62
61
63
- [ Theory ]
62
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
64
63
[ InlineData ( BrowserKind . Chromium ) ]
65
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
66
64
public async Task BlazorWasmHostedTemplate_Works ( BrowserKind browserKind )
67
65
{
68
66
var project = await CreateBuildPublishAsync ( "blazorhosted" + BrowserKind . Chromium , args : new [ ] { "--hosted" } , serverProject : true ) ;
@@ -109,9 +107,8 @@ private static async Task AssertCompressionFormat(AspNetProcess aspNetProcess, s
109
107
Assert . Equal ( expectedEncoding , response . Content . Headers . ContentEncoding . Single ( ) ) ;
110
108
}
111
109
112
- [ Theory ]
110
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
113
111
[ InlineData ( BrowserKind . Chromium ) ]
114
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
115
112
public async Task BlazorWasmStandalonePwaTemplate_Works ( BrowserKind browserKind )
116
113
{
117
114
var project = await CreateBuildPublishAsync ( "blazorstandalonepwa" , args : new [ ] { "--pwa" } ) ;
@@ -145,9 +142,8 @@ public async Task BlazorWasmStandalonePwaTemplate_Works(BrowserKind browserKind)
145
142
}
146
143
}
147
144
148
- [ Theory ]
145
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
149
146
[ InlineData ( BrowserKind . Chromium ) ]
150
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
151
147
public async Task BlazorWasmHostedPwaTemplate_Works ( BrowserKind browserKind )
152
148
{
153
149
var project = await CreateBuildPublishAsync ( "blazorhostedpwa" , args : new [ ] { "--hosted" , "--pwa" } , serverProject : true ) ;
@@ -216,18 +212,16 @@ private static void ValidatePublishedServiceWorker(Project project)
216
212
Assert . True ( serviceWorkerContents . Contains ( $ "/* Manifest version: { serviceWorkerAssetsManifestVersion } */", StringComparison . Ordinal ) ) ;
217
213
}
218
214
219
- [ ConditionalTheory ]
215
+ [ ConditionalTheory ( Skip = "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
220
216
[ InlineData ( BrowserKind . Chromium ) ]
221
217
// LocalDB doesn't work on non Windows platforms
222
218
[ OSSkipCondition ( OperatingSystems . Linux | OperatingSystems . MacOSX ) ]
223
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
224
219
public Task BlazorWasmHostedTemplate_IndividualAuth_Works_WithLocalDB ( BrowserKind browserKind )
225
220
=> BlazorWasmHostedTemplate_IndividualAuth_Works ( browserKind , true ) ;
226
221
227
222
// This test depends on BlazorWasmTemplate_CreateBuildPublish_IndividualAuthNoLocalDb running first
228
- [ Theory ]
223
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
229
224
[ InlineData ( BrowserKind . Chromium ) ]
230
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/30882" ) ]
231
225
[ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/30825" , Queues = "All.OSX" ) ]
232
226
public Task BlazorWasmHostedTemplate_IndividualAuth_Works_WithOutLocalDB ( BrowserKind browserKind )
233
227
=> BlazorWasmHostedTemplate_IndividualAuth_Works ( browserKind , false ) ;
@@ -379,9 +373,8 @@ public TemplateInstance(string name, params string[] arguments)
379
373
public string [ ] Arguments { get ; }
380
374
}
381
375
382
- [ Theory ]
376
+ [ Theory ( Skip = "https://github.com/dotnet/aspnetcore/issues/37782" ) ]
383
377
[ MemberData ( nameof ( TemplateData ) ) ]
384
- [ QuarantinedTest ( "https://github.com/dotnet/aspnetcore/issues/37782" ) ]
385
378
public Task BlazorWasmHostedTemplate_AzureActiveDirectoryTemplate_Works ( TemplateInstance instance )
386
379
=> CreateBuildPublishAsync ( instance . Name , args : instance . Arguments , targetFramework : "netstandard2.1" ) ;
387
380
0 commit comments