mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
Fix cookies test on windows (#772)
The `username` and `password` cookies showed up in the wrong order on Windows, causing the test to fail.
This commit is contained in:
parent
010872012f
commit
89e923d5f0
@ -2049,7 +2049,8 @@ describe('Page', function() {
|
|||||||
value: '123456'
|
value: '123456'
|
||||||
});
|
});
|
||||||
expect(await page.evaluate('document.cookie')).toBe('username=John Doe; password=123456');
|
expect(await page.evaluate('document.cookie')).toBe('username=John Doe; password=123456');
|
||||||
expect(await page.cookies()).toEqual([{
|
const cookies = await page.cookies();
|
||||||
|
expect(cookies.sort((a, b) => a.name.localeCompare(b.name))).toEqual([{
|
||||||
name: 'password',
|
name: 'password',
|
||||||
value: '123456',
|
value: '123456',
|
||||||
domain: 'localhost',
|
domain: 'localhost',
|
||||||
|
Loading…
Reference in New Issue
Block a user