From a5772f10e14c03d3a55b51b660e86317ab4f7afd Mon Sep 17 00:00:00 2001 From: Shannon Date: Wed, 2 Sep 2020 18:21:51 +1000 Subject: [PATCH] comments --- .../TestServerTest/UmbracoTestServerTestBase.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs b/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs index 18a5836223..145b9d2848 100644 --- a/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs +++ b/src/Umbraco.Tests.Integration/TestServerTest/UmbracoTestServerTestBase.cs @@ -129,10 +129,6 @@ namespace Umbraco.Tests.Integration.TestServerTest public override void ConfigureServices(IServiceCollection services) { - //services.AddSingleton(TestHelper.DbProviderFactoryCreator); - //var webHostEnvironment = TestHelper.GetWebHostEnvironment(); - //services.AddRequiredNetCoreServices(TestHelper, webHostEnvironment); - var umbracoBuilder = services.AddUmbraco(TestHelper.GetWebHostEnvironment(), Configuration); umbracoBuilder .WithConfiguration() @@ -141,7 +137,7 @@ namespace Umbraco.Tests.Integration.TestServerTest .WithRuntimeMinifier() .WithBackOffice() .WithBackOfficeIdentity() - //.WithMiniProfiler() + //.WithMiniProfiler() // we don't want this running in tests .WithMvcAndRazor(mvcBuilding: mvcBuilder => { mvcBuilder.AddApplicationPart(typeof(ContentController).Assembly);