From e94def7ecaa17b5ba1f04910e3d9eae5f96203c7 Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 13 Dec 2016 10:04:19 -0800 Subject: [PATCH] Re-enable tests for file delete detection in dotnet-watch Microsoft.NET.Sdk fixed the underlying issue causing these tests to fail. Resolves #224. --- .../GlobbingAppTests.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs index a6ccfaa91c..cb67bfec9e 100644 --- a/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs +++ b/test/Microsoft.DotNet.Watcher.Tools.FunctionalTests/GlobbingAppTests.cs @@ -54,8 +54,7 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests Assert.Equal(3, types); } - // TODO re-enable when MSBuild is updated. See https://github.com/aspnet/DotNetTools/issues/224 - [Fact(Skip = "Broken. See https://github.com/Microsoft/msbuild/issues/701")] + [Fact] public async Task DeleteCompiledFile() { await _app.StartWatcher().OrTimeout(); @@ -71,8 +70,7 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests Assert.Equal(1, types); } - // TODO re-enable when MSBuild is updated. See https://github.com/aspnet/DotNetTools/issues/224 - [Fact(Skip = "Broken. See https://github.com/Microsoft/msbuild/issues/701")] + [Fact] public async Task DeleteSourceFolder() { await _app.StartWatcher().OrTimeout();