Skip to content

Commit f8ed118

Browse files
committed
Re-enable tests
1 parent 6caada9 commit f8ed118

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/Tools/dotnet-watch/test/DotNetWatcherTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ public DotNetWatcherTests(ITestOutputHelper logger)
2222
_app = new KitchenSinkApp(logger);
2323
}
2424

25-
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/16912")]
25+
[ConditionalFact]
26+
[SkipOnHelix("https://github.com/aspnet/AspNetCore/issues/8267")]
2627
public async Task RunsWithDotnetWatchEnvVariable()
2728
{
2829
Assert.True(string.IsNullOrEmpty(Environment.GetEnvironmentVariable("DOTNET_WATCH")), "DOTNET_WATCH cannot be set already when this test is running");

src/Tools/dotnet-watch/test/GlobbingAppTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ public async Task RenameCompiledFile()
8585
await _app.HasRestarted();
8686
}
8787

88-
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/16912")]
88+
[ConditionalFact]
89+
[SkipOnHelix("https://github.com/aspnet/AspNetCore/issues/8267")]
8990
public async Task ChangeExcludedFile()
9091
{
9192
await _app.StartWatcherAsync();

src/Tools/dotnet-watch/test/NoDepsAppTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public async Task RestartProcessOnFileChange()
4242
Assert.NotEqual(processIdentifier, processIdentifier2);
4343
}
4444

45-
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/16912")]
45+
[ConditionalFact]
46+
[SkipOnHelix("https://github.com/aspnet/AspNetCore/issues/8267")]
4647
public async Task RestartProcessThatTerminatesAfterFileChange()
4748
{
4849
await _app.StartWatcherAsync();

0 commit comments

Comments
 (0)