trying to get WSL to work

This commit is contained in:
Charlie Kindel
2022-11-08 15:04:48 -07:00
parent ccb8405041
commit 033d03f4a1
5 changed files with 166 additions and 264 deletions

View File

@@ -513,5 +513,16 @@ namespace Terminal.Gui.Views {
TestHelpers.AssertDriverContentsWithFrameAre ($"{topRow}\n{buttonRow}\n{bottomRow}", output);
Application.End (runstate);
}
[Fact]
[AutoInitShutdown]
public void FileDialog_FileSystemWatcher ()
{
for (int i = 0; i < 256; i++) {
var fd = new FileDialog ();
fd.Ready += () => Application.RequestStop ();
Application.Run (fd);
}
}
}
}