0cdb391393
- Create CustomWebApplicationFactory to properly handle DI - Fix IntegrationTestBase to use proper service scope pattern - Update AuthIntegrationTests and EventsIntegrationTests to use CustomWebApplicationFactory - Resolve EF Core provider conflict by using ConfigureWebHost override Tests now run: 7 passed, 6 failed (auth/response format issues)
17 lines
330 B
JSON
17 lines
330 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"Jwt": {
|
|
"Key": "${JWT_SECRET_KEY}",
|
|
"Issuer": "RacePlannerApi",
|
|
"Audience": "RacePlannerClient"
|
|
},
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "${DATABASE_URL}"
|
|
}
|
|
} |