Skip to content

Commit

Permalink
devops: mark another tracing test as fixme (#5201)
Browse files Browse the repository at this point in the history
It was failing since a3af082
  • Loading branch information
aslushnikov committed Jan 28, 2021
1 parent fe1302b commit 06f679b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/trace.spec.ts
Expand Up @@ -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();
Expand Down

0 comments on commit 06f679b

Please sign in to comment.