Skip to content

Commit 37ec02b

Browse files
committed
Remove published: false
1 parent d4164a1 commit 37ec02b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ProjectTemplates/test/BlazorWasmTemplateTest.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public BlazorWasmTemplateTest(ProjectFactoryFixture projectFactory, BrowserFixtu
2424

2525
public ProjectFactoryFixture ProjectFactory { get; set; }
2626

27-
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/17681")]
27+
[Fact]
2828
public async Task BlazorWasmStandaloneTemplate_Works()
2929
{
3030
var project = await ProjectFactory.GetOrCreateProject("blazorstandalone", Output);
@@ -42,7 +42,7 @@ public async Task BlazorWasmStandaloneTemplate_Works()
4242
await BuildAndRunTest(project.ProjectName, project);
4343
}
4444

45-
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/17681")]
45+
[Fact]
4646
public async Task BlazorWasmHostedTemplate_Works()
4747
{
4848
var project = await ProjectFactory.GetOrCreateProject("blazorhosted", Output);

src/ProjectTemplates/test/Helpers/Project.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ internal AspNetProcess StartBuiltProjectAsync(bool hasListeningUri = true)
211211
};
212212

213213
var projectDll = Path.Combine(TemplateBuildDir, $"{ProjectName}.dll");
214-
return new AspNetProcess(Output, TemplateOutputDir, projectDll, environment, published: false, hasListeningUri: hasListeningUri);
214+
return new AspNetProcess(Output, TemplateOutputDir, projectDll, environment, hasListeningUri: hasListeningUri);
215215
}
216216

217217
internal AspNetProcess StartPublishedProjectAsync(bool hasListeningUri = true)

0 commit comments

Comments
 (0)