Frontend gaps fill work. Testing fixes work. Auditing in progress.

This commit is contained in:
StellaOps Bot
2025-12-30 01:22:58 +02:00
parent 1dc4bcbf10
commit 7a5210e2aa
928 changed files with 183942 additions and 3941 deletions

View File

@@ -58,7 +58,7 @@ public class KeyRotationWorkflowIntegrationTests : IClassFixture<WebApplicationF
_client = _factory.CreateClient();
}
public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
// Create a test trust anchor
using var scope = _factory.Services.CreateScope();
@@ -91,7 +91,7 @@ public class KeyRotationWorkflowIntegrationTests : IClassFixture<WebApplicationF
await dbContext.SaveChangesAsync();
}
public Task DisposeAsync() => Task.CompletedTask;
public ValueTask DisposeAsync() => ValueTask.CompletedTask;
#region Full Rotation Workflow Tests
@@ -351,3 +351,6 @@ internal static class TestKeys
-----END PUBLIC KEY-----
""";
}

View File

@@ -18,9 +18,7 @@
</PackageReference>
</ItemGroup>
<ItemGroup>
<Using Include="Xunit.Abstractions" />
</ItemGroup>
<ItemGroup> </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\StellaOps.Signer.WebService\StellaOps.Signer.WebService.csproj" />