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

@@ -23,14 +23,14 @@ public sealed class ReplayableVerdictE2ETests : IAsyncLifetime
private const string BundlePath = "../../../fixtures/e2e/bundle-0001";
private GoldenBundle? _bundle;
public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
_bundle = await GoldenBundle.LoadAsync(BundlePath);
}
public Task DisposeAsync()
public ValueTask DisposeAsync()
{
return Task.CompletedTask;
return ValueTask.CompletedTask;
}
[Fact(Skip = "E2E-002: Requires full pipeline integration")]
@@ -243,3 +243,6 @@ internal sealed record BundleOutputs
public required InputFile Verdict { get; init; }
public required string VerdictHash { get; init; }
}

View File

@@ -12,8 +12,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.0">
<PackageReference Include="xunit.v3" />
<PackageReference Include="xunit.runner.visualstudio">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
@@ -34,3 +34,4 @@
</ItemGroup>
</Project>