Skip to content

Commit 93c9083

Browse files
authored
tests(firefox): unskip "should report shiftKey" on Linux&Win (#1833)
1 parent 3485ffb commit 93c9083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/keyboard.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe('Keyboard', function() {
7878
await page.keyboard.insertText('hello world');
7979
expect(await page.evaluate('window.events')).toEqual(['input']);
8080
});
81-
it.fail(FFOX)('should report shiftKey', async({page, server}) => {
81+
it.fail(FFOX && MAC)('should report shiftKey', async({page, server}) => {
8282
await page.goto(server.PREFIX + '/input/keyboard.html');
8383
const keyboard = page.keyboard;
8484
const codeForKey = {'Shift': 16, 'Alt': 18, 'Control': 17};

0 commit comments

Comments
 (0)