Skip to content

Commit d6f3673

Browse files
committed
Address Jason's comment
1 parent 5ffca1a commit d6f3673

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

test/DeadKeyTest.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,14 @@ public void DeadKeyShouldBeIgnored()
1111
Skip.If(this.Fixture.Lang != "fr-FR", "The dead key test requires Keyboard layout to be set to 'fr-FR'");
1212
TestSetup(KeyMode.Cmd);
1313

14+
while (!System.Diagnostics.Debugger.IsAttached)
15+
{
16+
System.Threading.Thread.Sleep(200);
17+
}
18+
1419
Test("aa", Keys("aa", _.DeadKey_Caret));
1520
Test("aab", Keys("aa", _.DeadKey_Caret, 'b'));
21+
Test("aaâ", Keys("aa", _.DeadKey_Caret_A));
1622
}
1723
}
1824
}

test/KeyInfo-fr-FR-windows.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,5 +1643,12 @@
16431643
"ConsoleKey": "Oem6",
16441644
"Modifiers": "0",
16451645
"Investigate": false
1646+
},
1647+
{
1648+
"Key": "DeadKey_Caret+A",
1649+
"KeyChar": "\u00e2",
1650+
"ConsoleKey": "A",
1651+
"Modifiers": "0",
1652+
"Investigate": false
16461653
}
16471654
]

0 commit comments

Comments
 (0)