test: unskip passing firefox tests (#16233)

This commit is contained in:
Yury Semikhatsky 2022-08-03 17:43:00 -07:00 committed by GitHub
parent 8eca6339c2
commit e4efc300c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -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 => {

View File

@ -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'),