Skip to content

Commit c011637

Browse files
committed
Binary search.
1 parent c1b7774 commit c011637

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/Aspire.Hosting.Tests/Health/ResourceHealthCheckServiceTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ await rns.PublishUpdateAsync(resource.Resource, s => s with
7878
await app.StopAsync();
7979
}
8080

81-
[Fact]
82-
[ActiveIssue("https://github.com/dotnet/aspire/issues/6363")]
81+
[Fact(Skip = "Finding test that is crashing runner.")]
8382
public async Task HealthCheckIntervalSlowsAfterSteadyHealthyState()
8483
{
8584
using var builder = TestDistributedApplicationBuilder.Create(testOutputHelper);
@@ -124,7 +123,7 @@ await rns.PublishUpdateAsync(resource.Resource, s => s with
124123
await app.StopAsync(abortTokenSource.Token);
125124
}
126125

127-
[Fact]
126+
[Fact(Skip = "Finding test that is crashing runner.")]
128127
public async Task HealthCheckIntervalDoesNotSlowBeforeSteadyHealthyState()
129128
{
130129
using var builder = TestDistributedApplicationBuilder.Create(testOutputHelper);
@@ -172,6 +171,7 @@ await rns.PublishUpdateAsync(resource.Resource, s => s with
172171
}
173172

174173
[Fact]
174+
175175
public async Task ResourcesWithoutHealthCheckAnnotationsGetReadyEventFired()
176176
{
177177
using var builder = TestDistributedApplicationBuilder.Create(testOutputHelper);
@@ -200,7 +200,7 @@ await rns.PublishUpdateAsync(resource.Resource, s => s with
200200
await app.StopAsync();
201201
}
202202

203-
[Fact]
203+
[Fact(Skip = "Finding test that is crashing runner.")]
204204
public async Task PoorlyImplementedHealthChecksDontCauseMonitoringLoopToCrashout()
205205
{
206206
using var builder = TestDistributedApplicationBuilder.Create(testOutputHelper);
@@ -239,7 +239,7 @@ await rns.PublishUpdateAsync(resource.Resource, s => s with
239239
await app.StopAsync();
240240
}
241241

242-
[Fact]
242+
[Fact(Skip = "Finding test that is crashing runner.")]
243243
public async Task ResourceHealthCheckServiceDoesNotRunHealthChecksUnlessResourceIsRunning()
244244
{
245245
using var builder = TestDistributedApplicationBuilder.CreateWithTestContainerRegistry(testOutputHelper);
@@ -304,7 +304,7 @@ await rns.PublishUpdateAsync(parent.Resource, s => s with
304304
await app.StopAsync();
305305
}
306306

307-
[Fact]
307+
[Fact(Skip = "Finding test that is crashing runner.")]
308308
public async Task ResourceHealthCheckServiceOnlyRaisesResourceReadyOnce()
309309
{
310310
using var builder = TestDistributedApplicationBuilder.CreateWithTestContainerRegistry(testOutputHelper);

0 commit comments

Comments
 (0)