Skip to content

Commit 25b5aa7

Browse files
committed
No longer check if default is US.
1 parent 908ea77 commit 25b5aa7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/vs/workbench/services/keybinding/test/browserKeyboardMapper.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ suite('keyboard layout loader', () => {
4040
let commandService = instantiationService.stub(ICommandService, {});
4141
let instance = new TestKeyboardMapperFactory(notitifcationService, storageService, commandService);
4242

43-
test.skip('load default US keyboard layout', () => {
43+
test('load default US keyboard layout', () => {
4444
assert.notEqual(instance.activeKeyboardLayout, null);
45-
assert.equal(instance.activeKeyboardLayout!.isUSStandard, true);
4645
});
4746

48-
test.skip('isKeyMappingActive', () => {
47+
test('isKeyMappingActive', () => {
48+
instance.setUSKeyboardLayout();
4949
assert.equal(instance.isKeyMappingActive({
5050
KeyA: {
5151
value: 'a',

0 commit comments

Comments
 (0)