Frontend gaps fill work. Testing fixes work. Auditing in progress.
This commit is contained in:
@@ -29,4 +29,5 @@
|
||||
<ProjectReference Include="..\StellaOps.PacksRegistry.WebService\StellaOps.PacksRegistry.WebService.csproj" />
|
||||
<ProjectReference Include="../../../__Libraries/StellaOps.TestKit/StellaOps.TestKit.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
</Project>
|
||||
|
||||
|
||||
@@ -27,12 +27,12 @@ public sealed class PostgresPackRepositoryTests : IAsyncLifetime
|
||||
_repository = new PostgresPackRepository(dataSource, NullLogger<PostgresPackRepository>.Instance);
|
||||
}
|
||||
|
||||
public async Task InitializeAsync()
|
||||
public async ValueTask InitializeAsync()
|
||||
{
|
||||
await _fixture.TruncateAllTablesAsync();
|
||||
}
|
||||
|
||||
public Task DisposeAsync() => Task.CompletedTask;
|
||||
public ValueTask DisposeAsync() => ValueTask.CompletedTask;
|
||||
|
||||
[Trait("Category", TestCategories.Unit)]
|
||||
[Fact]
|
||||
@@ -159,3 +159,6 @@ public sealed class PostgresPackRepositoryTests : IAsyncLifetime
|
||||
CreatedAtUtc: DateTimeOffset.UtcNow,
|
||||
Metadata: null);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user