Cleanup unnecessary NGPV exclusion and dead test code
This commit is contained in:
parent
34ea52068a
commit
9c03018a18
|
|
@ -23,9 +23,6 @@
|
||||||
"exclusions":{
|
"exclusions":{
|
||||||
"BUILD_ITEMS_FRAMEWORK": {
|
"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."
|
"*": "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."
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -41,22 +41,6 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
|
||||||
Assert.Equal(2, types);
|
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]
|
[Fact]
|
||||||
public async Task DeleteCompiledFile()
|
public async Task DeleteCompiledFile()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue