Frontend gaps fill work. Testing fixes work. Auditing in progress.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user