We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fcb6f8 commit 0140070Copy full SHA for 0140070
test/TestBuildingBlocks/IntegrationTestContext.cs
@@ -67,7 +67,9 @@ protected override HttpClient CreateClient()
67
private WebApplicationFactory<TStartup> CreateFactory()
68
{
69
string postgresPassword = Environment.GetEnvironmentVariable("PGPASSWORD") ?? "postgres";
70
- string dbConnectionString = $"Host=localhost;Port=5432;Database=JsonApiTest-{Guid.NewGuid():N};User ID=postgres;Password={postgresPassword}";
+
71
+ string dbConnectionString = $"Host=localhost;Port=5432;Database=JsonApiTest-{Guid.NewGuid():N};User ID=postgres;" +
72
+ $"Password={postgresPassword};Include Error Detail=true";
73
74
var factory = new IntegrationTestWebApplicationFactory();
75
0 commit comments