Cleanup unnecessary NGPV exclusion and dead test code

This commit is contained in:
Nate McMaster 2017-06-02 15:29:41 -07:00
parent 34ea52068a
commit 9c03018a18
2 changed files with 0 additions and 19 deletions

View File

@ -23,9 +23,6 @@
"exclusions":{
"BUILD_ITEMS_FRAMEWORK": {
"*": "This is an MSBuild task intended to run through dotnet msbuild /t:Target independently of whether your project targets full framework or .net core."
},
"THIRDPARTY_DEPENDENCY_NOT_REGISTERED": {
"*": "Temporary exception while waiting for Coherence-Signed to get a new version of NugetPackageVerifier."
}
}
}

View File

@ -41,22 +41,6 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
Assert.Equal(2, types);
}
[Fact(Skip = "Broken. See https://github.com/aspnet/DotNetTools/issues/212")]
public async Task AddCompiledFile()
{
await _app.StartWatcherAsync();
var types = await _app.GetCompiledAppDefinedTypes().TimeoutAfter(DefaultTimeout);
Assert.Equal(2, types);
var fileToChange = Path.Combine(_app.SourceDirectory, "include", "Bar.cs");
File.WriteAllText(fileToChange, "public class Bar {}");
await _app.HasRestarted();
types = await _app.GetCompiledAppDefinedTypes().TimeoutAfter(DefaultTimeout);
Assert.Equal(3, types);
}
[Fact]
public async Task DeleteCompiledFile()
{