|
|
@@ -6,6 +6,7 @@ using System.IO;
|
|
|
using System.Linq;
|
|
|
using System.Threading;
|
|
|
using System.Threading.Tasks;
|
|
|
+using Microsoft.AspNetCore.Testing;
|
|
|
using Microsoft.AspNetCore.Testing.xunit;
|
|
|
using Microsoft.DotNet.Watcher.Tools.Tests;
|
|
|
using Xunit;
|
|
|
@@ -21,10 +22,9 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
|
|
|
_app = new GlobbingApp(logger);
|
|
|
}
|
|
|
|
|
|
- [ConditionalTheory]
|
|
|
+ [Theory(Skip = "https://github.com/aspnet/AspNetCore/issues/8267")]
|
|
|
[InlineData(true)]
|
|
|
[InlineData(false)]
|
|
|
- [SkipOnHelix] // https://github.com/aspnet/AspNetCore/issues/8267
|
|
|
public async Task ChangeCompiledFile(bool usePollingWatcher)
|
|
|
{
|
|
|
_app.UsePollingWatcher = usePollingWatcher;
|
|
|
@@ -42,8 +42,7 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
|
|
|
Assert.Equal(2, types);
|
|
|
}
|
|
|
|
|
|
- [ConditionalFact]
|
|
|
- [SkipOnHelix] // https://github.com/aspnet/AspNetCore/issues/8267
|
|
|
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/8267")]
|
|
|
public async Task DeleteCompiledFile()
|
|
|
{
|
|
|
await _app.StartWatcherAsync();
|
|
|
@@ -59,8 +58,7 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
|
|
|
Assert.Equal(1, types);
|
|
|
}
|
|
|
|
|
|
- [ConditionalFact]
|
|
|
- [SkipOnHelix] // https://github.com/aspnet/AspNetCore/issues/8267
|
|
|
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/8267")]
|
|
|
public async Task DeleteSourceFolder()
|
|
|
{
|
|
|
await _app.StartWatcherAsync();
|