diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index d171c385be..fffe47c0ff 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -15,9 +15,9 @@ }, { "name": "chromium-tip-of-tree", - "revision": "1015", + "revision": "1016", "installByDefault": false, - "browserVersion": "105.0.5117.0" + "browserVersion": "105.0.5123.0" }, { "name": "firefox", diff --git a/tests/library/browsercontext-add-cookies.spec.ts b/tests/library/browsercontext-add-cookies.spec.ts index 9374df5b39..96e0a64d78 100644 --- a/tests/library/browsercontext-add-cookies.spec.ts +++ b/tests/library/browsercontext-add-cookies.spec.ts @@ -63,8 +63,7 @@ it('should add cookies with empty value', async ({ context, page, server }) => { expect(await page.evaluate(() => document.cookie)).toEqual('marker='); }); -it('should roundtrip cookie', async ({ context, page, server, channel }) => { - it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14725'); +it('should roundtrip cookie', async ({ context, page, server }) => { await page.goto(server.EMPTY_PAGE); // @see https://en.wikipedia.org/wiki/Year_2038_problem const date = +(new Date('1/1/2038')); diff --git a/tests/library/browsercontext-cookies.spec.ts b/tests/library/browsercontext-cookies.spec.ts index 8edb81da23..e1d139a768 100644 --- a/tests/library/browsercontext-cookies.spec.ts +++ b/tests/library/browsercontext-cookies.spec.ts @@ -40,8 +40,7 @@ it('should get a cookie @smoke', async ({ context, page, server, defaultSameSite }]); }); -it('should get a non-session cookie', async ({ context, page, server, defaultSameSiteCookieValue, channel }) => { - it.fixme(channel === 'chromium-tip-of-tree', 'https://github.com/microsoft/playwright/issues/14725'); +it('should get a non-session cookie', async ({ context, page, server, defaultSameSiteCookieValue }) => { await page.goto(server.EMPTY_PAGE); // @see https://en.wikipedia.org/wiki/Year_2038_problem const date = +(new Date('1/1/2038'));