From e4efc300c7b10bae7450af4d8b7f3e2894adf20d Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 3 Aug 2022 17:43:00 -0700 Subject: [PATCH] test: unskip passing firefox tests (#16233) --- tests/page/page-request-continue.spec.ts | 3 +-- tests/page/workers.spec.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/page/page-request-continue.spec.ts b/tests/page/page-request-continue.spec.ts index 8300959718..d4cc4a6e9a 100644 --- a/tests/page/page-request-continue.spec.ts +++ b/tests/page/page-request-continue.spec.ts @@ -173,9 +173,8 @@ it.describe('post data', () => { expect((await serverRequest.postBody).toString('utf8')).toBe('doggo'); }); - it('should compute content-length from post data', async ({ page, server, browserName }) => { + it('should compute content-length from post data', async ({ page, server }) => { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/16027' }); - it.fixme(browserName === 'firefox'); await page.goto(server.EMPTY_PAGE); const data = 'a'.repeat(7500); await page.route('**/*', route => { diff --git a/tests/page/workers.spec.ts b/tests/page/workers.spec.ts index a9f88a0a9a..608afd9b80 100644 --- a/tests/page/workers.spec.ts +++ b/tests/page/workers.spec.ts @@ -174,9 +174,8 @@ it('should report network activity on worker creation', async function({ page, s expect(response.ok()).toBe(true); }); -it('should dispatch console messages when page has workers', async function({ page, browserName, server }) { +it('should dispatch console messages when page has workers', async function({ page, server }) { it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/15550' }); - it.fixme(browserName === 'firefox'); await page.goto(server.EMPTY_PAGE); await Promise.all([ page.waitForEvent('worker'),