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

@@ -69,12 +69,12 @@ public sealed class PostgresFixture : IAsyncLifetime
/// </summary>
public ushort Port => _container.GetMappedPublicPort(5432);
public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
await _container.StartAsync();
}
public async Task DisposeAsync()
public async ValueTask DisposeAsync()
{
await _container.DisposeAsync();
}
@@ -336,3 +336,5 @@ public class PostgresCollection : ICollectionFixture<PostgresFixture>
// to be the place to apply [CollectionDefinition] and all the
// ICollectionFixture<> interfaces.
}