test: skip page-click-scroll on linux headed too (#15025)
This commit is contained in:
parent
c0c1ada9fe
commit
f2b3491705
|
|
@ -16,9 +16,9 @@
|
|||
|
||||
import { test as it } from './pageTest';
|
||||
|
||||
it('should not hit scroll bar', async ({ page, isAndroid, browserName, platform, headless }) => {
|
||||
it('should not hit scroll bar', async ({ page, isAndroid, browserName, platform }) => {
|
||||
it.fixme(browserName === 'webkit' && platform === 'darwin');
|
||||
it.fixme(browserName === 'webkit' && platform === 'linux' && headless);
|
||||
it.fixme(browserName === 'webkit' && platform === 'linux', 'Fails in headless and in headful on Ubuntu 22.04');
|
||||
it.skip(isAndroid);
|
||||
|
||||
await page.setContent(`
|
||||
|
|
|
|||
Loading…
Reference in a new issue