Changed default test setting to Boot=false
Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
@@ -92,7 +92,8 @@ namespace Umbraco.Tests.Integration.Testing
|
||||
var host = hostBuilder.StartAsync().GetAwaiter().GetResult();
|
||||
Services = host.Services;
|
||||
var app = new ApplicationBuilder(host.Services);
|
||||
Configure(app);
|
||||
Configure(app); //Takes around 200 ms
|
||||
|
||||
|
||||
OnFixtureTearDown(() => host.Dispose());
|
||||
}
|
||||
@@ -274,14 +275,13 @@ namespace Umbraco.Tests.Integration.Testing
|
||||
|
||||
public virtual void Configure(IApplicationBuilder app)
|
||||
{
|
||||
Services.GetRequiredService<IBackofficeSecurityFactory>().EnsureBackofficeSecurity();
|
||||
Services.GetRequiredService<IUmbracoContextFactory>().EnsureUmbracoContext();
|
||||
|
||||
// get the currently set options
|
||||
//get the currently set options
|
||||
var testOptions = TestOptionAttributeBase.GetTestOptions<UmbracoTestAttribute>();
|
||||
if (testOptions.Boot)
|
||||
{
|
||||
app.UseUmbracoCore();
|
||||
Services.GetRequiredService<IBackofficeSecurityFactory>().EnsureBackofficeSecurity();
|
||||
Services.GetRequiredService<IUmbracoContextFactory>().EnsureUmbracoContext();
|
||||
app.UseUmbracoCore(); // Takes 200 ms
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user