From b7fd0cd14c7fa4598bf5fb9f162ba6dc754dd865 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 22 Jan 2021 17:27:16 -0800 Subject: [PATCH] test: disable trace test that always fails (#5124) --- test/trace.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/trace.spec.ts b/test/trace.spec.ts index 00bfb1a218780..5f2b4a333a8e0 100644 --- a/test/trace.spec.ts +++ b/test/trace.spec.ts @@ -19,7 +19,7 @@ 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 => 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();