Frontend gaps fill work. Testing fixes work. Auditing in progress.
This commit is contained in:
@@ -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-----
|
||||
""";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -18,9 +18,7 @@
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit.Abstractions" />
|
||||
</ItemGroup>
|
||||
<ItemGroup> </ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\StellaOps.Signer.WebService\StellaOps.Signer.WebService.csproj" />
|
||||
|
||||
Reference in New Issue
Block a user