chore: disable failing tracing test (#5170)

The test constantly fails.
This commit is contained in:
Andrey Lushnikov 2021-01-27 22:31:46 -08:00 committed by GitHub
parent ce43e730f4
commit 2a71165ed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,9 @@ it('should record trace', async ({browser, testInfo, server}) => {
expect(snapshotEvent).toBeTruthy();
});
it('should record trace with POST', async ({browser, testInfo, server}) => {
it('should record trace with POST', (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();