// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.AspNetCore.Blazor.E2ETest.Infrastructure.ServerFixtures; namespace Microsoft.AspNetCore.Blazor.E2ETest.ServerExecutionTests { internal static class ServerExecutionTestExtensions { public static ToggleExecutionModeServerFixture WithServerExecution(this ToggleExecutionModeServerFixture serverFixture) { serverFixture.UseAspNetHost(TestServer.Program.BuildWebHost); return serverFixture; } } }