This commit is contained in:
Tig
2025-12-01 17:24:57 -07:00
parent f2a47367a5
commit 215d76645b
7 changed files with 61 additions and 36 deletions

View File

@@ -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