devops: mark another tracing test as fixme (#5201)

It was failing since a3af0829ff
This commit is contained in:
Andrey Lushnikov 2021-01-28 00:38:36 -08:00 committed by GitHub
parent fe1302b47d
commit 06f679b160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,9 @@ import type * as trace from '../src/trace/traceTypes';
import * as path from 'path';
import * as fs from 'fs';
it('should record trace', async ({browser, testInfo, server}) => {
it('should record trace', (test, { browserName, platform }) => {
test.fixme();
}, async ({browser, testInfo, server}) => {
const traceDir = testInfo.outputPath('trace');
const context = await browser.newContext({ _traceDir: traceDir } as any);
const page = await context.newPage();