test: mark test as "fixme" on chromium (#5524)

References #5523
This commit is contained in:
Andrey Lushnikov 2021-02-19 13:50:34 -08:00 committed by GitHub
parent 5f9acfaccb
commit 57c7a703ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -180,6 +180,7 @@ describe('page screenshot', (suite, { browserName, headful }) => {
it('should work with a mobile viewport', (test, { browserName }) => {
test.skip(browserName === 'firefox');
test.fixme(browserName === 'chromium');
}, async ({browser, server}) => {
const context = await browser.newContext({ viewport: { width: 320, height: 480 }, isMobile: true });
const page = await context.newPage();