Tests fixes, audit progress, UI completions
This commit is contained in:
@@ -16,7 +16,7 @@ namespace StellaOps.Scanner.WebService.Tests;
|
||||
public sealed class ScannerApplicationFactory : WebApplicationFactory<ServiceStatus>
|
||||
{
|
||||
private readonly ScannerWebServicePostgresFixture postgresFixture;
|
||||
private readonly Dictionary<string, string?> configuration = new()
|
||||
private readonly Dictionary<string, string?> configuration = new(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
["scanner:storage:driver"] = "postgres",
|
||||
["scanner:storage:dsn"] = string.Empty,
|
||||
@@ -32,7 +32,9 @@ public sealed class ScannerApplicationFactory : WebApplicationFactory<ServiceSta
|
||||
["scanner:telemetry:minimumLogLevel"] = "Information",
|
||||
["scanner:telemetry:enableRequestLogging"] = "false",
|
||||
["scanner:events:enabled"] = "false",
|
||||
["scanner:features:enableSignedReports"] = "false"
|
||||
["scanner:features:enableSignedReports"] = "false",
|
||||
["scanner:offlineKit:requireDsse"] = "false",
|
||||
["scanner:offlineKit:rekorOfflineMode"] = "false"
|
||||
};
|
||||
|
||||
private Action<IDictionary<string, string?>>? configureConfiguration;
|
||||
|
||||
Reference in New Issue
Block a user