From bee5c176dead47b3b22afa95caa474153b8103de Mon Sep 17 00:00:00 2001 From: Steve Sanderson Date: Thu, 7 Dec 2017 12:06:07 +0000 Subject: [PATCH] Add comment about StaticSiteServerFixture --- .../Infrastructure/ServerFixtures/StaticSiteServerFixture.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/Microsoft.Blazor.E2ETest/Infrastructure/ServerFixtures/StaticSiteServerFixture.cs b/test/Microsoft.Blazor.E2ETest/Infrastructure/ServerFixtures/StaticSiteServerFixture.cs index 321c8159c5..18d3ac4b68 100644 --- a/test/Microsoft.Blazor.E2ETest/Infrastructure/ServerFixtures/StaticSiteServerFixture.cs +++ b/test/Microsoft.Blazor.E2ETest/Infrastructure/ServerFixtures/StaticSiteServerFixture.cs @@ -8,6 +8,10 @@ using Microsoft.AspNetCore.Hosting; namespace Microsoft.Blazor.E2ETest.Infrastructure.ServerFixtures { + // Although this is not used for anything meaningful related to Blazor yet, it + // will be used later when there's a mechanism for publishing standalone Blazor + // apps as a set of purely static files and we need E2E testing on the result. + public class StaticSiteServerFixture : WebHostServerFixture { public string SampleSiteName { get; set; }