Disable dotnet-watch test for mono (#18193)
This commit is contained in:
parent
b753c23591
commit
c744093ce7
1 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,12 @@ public class DotNetWatchTests : SdkTests
|
|||
[Fact]
|
||||
public void WatchTests()
|
||||
{
|
||||
if (DotNetHelper.IsMonoRuntime)
|
||||
{
|
||||
// TODO: Temporarily disabled due to https://github.com/dotnet/sdk/issues/37774
|
||||
return;
|
||||
}
|
||||
|
||||
string projectDirectory = DotNetHelper.ExecuteNew(DotNetTemplate.Console.GetName(), nameof(DotNetWatchTests));
|
||||
bool outputChanged = false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue