feat(chromium-tip-of-tree): roll to r1016 (#14912)

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Max Schmitt <max@schmitt.mx>
This commit is contained in:
Playwright Service 2022-06-16 10:36:37 -07:00 committed by GitHub
parent cddf3293cf
commit c17dbe3ab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 6 deletions

View File

@ -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",

View File

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

View File

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