diff --git a/test/Microsoft.AspNetCore.SignalR.Redis.Tests/Startup.cs b/test/Microsoft.AspNetCore.SignalR.Redis.Tests/Startup.cs index 5567be0df1..d43e2ae834 100644 --- a/test/Microsoft.AspNetCore.SignalR.Redis.Tests/Startup.cs +++ b/test/Microsoft.AspNetCore.SignalR.Redis.Tests/Startup.cs @@ -11,7 +11,10 @@ namespace Microsoft.AspNetCore.SignalR.Redis.Tests { public void ConfigureServices(IServiceCollection services) { - services.AddSignalR() + services.AddSignalR(options => + { + options.EnableDetailedErrors = true; + }) .AddMessagePackProtocol() .AddRedis(options => {