fix(test): disable failing drag and drop test on mac and windows (#5575)

This commit is contained in:
Joel Einbinder 2021-02-23 20:28:39 -08:00 коммит произвёл GitHub
Родитель f3a09210da
Коммит 841264c94d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -119,8 +119,9 @@ describe('Drag and drop', (test, {browserName}) => {
});
});
it('should respect the drop effect', (test, {browserName}) => {
it('should respect the drop effect', (test, {browserName, platform}) => {
test.fixme(browserName === 'chromium', 'Chromium doesn\'t let users set dropEffect on our fake data transfer');
test.fixme(browserName === 'webkit' && platform !== 'linux', 'WebKit doesn\'t handle the drop effect correctly outside of linux.');
test.fixme(browserName === 'firefox');
}, async ({context}) => {
const page = await context.newPage();