mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Tweaks
This commit is contained in:
@@ -65,10 +65,11 @@ foreach (ExampleInfo example in examples)
|
||||
// Create context for running the example
|
||||
ExampleContext context = new ()
|
||||
{
|
||||
DriverName = "FakeDriver",
|
||||
KeysToInject = ["Esc"], // Just press Esc to quit each example
|
||||
KeysToInject = example.DemoKeyStrokes.OrderBy (ks => ks.Order)
|
||||
.SelectMany (ks => ks.KeyStrokes)
|
||||
.ToList (),
|
||||
TimeoutMs = 5000,
|
||||
Mode = ExecutionMode.OutOfProcess
|
||||
Mode = ExecutionMode.InProcess
|
||||
};
|
||||
|
||||
try
|
||||
|
||||
Reference in New Issue
Block a user