From 93c90836293a3f577bdeff3dc6e63038da27e56b Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 20 Apr 2020 14:43:26 -0700 Subject: [PATCH] tests(firefox): unskip "should report shiftKey" on Linux&Win (#1833) --- test/keyboard.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/keyboard.spec.js b/test/keyboard.spec.js index ec4b263c39..c1f36cb4c6 100644 --- a/test/keyboard.spec.js +++ b/test/keyboard.spec.js @@ -78,7 +78,7 @@ describe('Keyboard', function() { await page.keyboard.insertText('hello world'); expect(await page.evaluate('window.events')).toEqual(['input']); }); - it.fail(FFOX)('should report shiftKey', async({page, server}) => { + it.fail(FFOX && MAC)('should report shiftKey', async({page, server}) => { await page.goto(server.PREFIX + '/input/keyboard.html'); const keyboard = page.keyboard; const codeForKey = {'Shift': 16, 'Alt': 18, 'Control': 17};