chore: properly mark failint tests

This commit is contained in:
Andrey Lushnikov 2020-03-06 13:34:29 -08:00
parent cf820b5269
commit ca6faf2e4c
2 changed files with 2 additions and 2 deletions

View File

@ -443,7 +443,7 @@ module.exports.describe = function({testRunner, expect, playwright, defaultBrows
});
describe('BrowserContext.clearCookies', function() {
it.fails(WEBKIT)('should clear cookies', async({context, page, server}) => {
it.fail(WEBKIT)('should clear cookies', async({context, page, server}) => {
await page.goto(server.EMPTY_PAGE);
await context.setCookies([{
url: server.EMPTY_PAGE,

View File

@ -226,7 +226,7 @@ module.exports.describe = function({testRunner, expect, defaultBrowserOptions, p
expect(message).not.toContain('Timeout');
}
});
it.fails(WEBKIT)('should fire close event for all contexts', async() => {
it.fail(WEBKIT)('should fire close event for all contexts', async() => {
const browser = await playwright.launch(defaultBrowserOptions);
const context = await browser.newContext();
let closed = false;