test: disable "should work with video+trace" on headed (#20299)

This commit is contained in:
Dmitry Gozman 2023-01-23 15:26:05 -08:00 committed by GitHub
parent 6c5317bd31
commit 0ec1d5d452
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -724,8 +724,9 @@ it.describe('screencast', () => {
expectAll(pixels, almostRed);
});
it('should work with video+trace', async ({ browser, trace }, testInfo) => {
it('should work with video+trace', async ({ browser, trace, headless }, testInfo) => {
it.skip(trace === 'on');
it.fixme(!headless, 'different trace screencast image size on all browsers');
const size = { width: 500, height: 400 };
const traceFile = testInfo.outputPath('trace.zip');