Skip to content

Commit cf820b5

Browse files
committed
test: mark failing tests on WebKit
1 parent 8cc7d43 commit cf820b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/cookies.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ module.exports.describe = function({testRunner, expect, playwright, defaultBrows
443443
});
444444

445445
describe('BrowserContext.clearCookies', function() {
446-
it('should clear cookies', async({context, page, server}) => {
446+
it.fails(WEBKIT)('should clear cookies', async({context, page, server}) => {
447447
await page.goto(server.EMPTY_PAGE);
448448
await context.setCookies([{
449449
url: server.EMPTY_PAGE,

test/launcher.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ module.exports.describe = function({testRunner, expect, defaultBrowserOptions, p
226226
expect(message).not.toContain('Timeout');
227227
}
228228
});
229-
it('should fire close event for all contexts', async() => {
229+
it.fails(WEBKIT)('should fire close event for all contexts', async() => {
230230
const browser = await playwright.launch(defaultBrowserOptions);
231231
const context = await browser.newContext();
232232
let closed = false;

0 commit comments

Comments
 (0)