tests(firefox): unskip "should report shiftKey" on Linux&Win (#1833)

This commit is contained in:
Yury Semikhatsky 2020-04-20 14:43:26 -07:00 committed by GitHub
parent 3485ffb4e6
commit 93c9083629
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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