Roll chromium to r488994

This patch rolls chromium past the r488926 which prevents chromium from
going to sleep on Mac OS X.

Fixes #100.
This commit is contained in:
Andrey Lushnikov 2017-07-24 18:28:34 -07:00
parent a24cec20f9
commit 91cbe561ba
2 changed files with 1 additions and 8 deletions

View File

@ -27,7 +27,7 @@
"ws": "^3.0.0" "ws": "^3.0.0"
}, },
"puppeteer": { "puppeteer": {
"chromium_revision": "488823" "chromium_revision": "488994"
}, },
"devDependencies": { "devDependencies": {
"commonmark": "^0.27.0", "commonmark": "^0.27.0",

View File

@ -986,13 +986,6 @@ describe('Puppeteer', function() {
} }
}); });
// FIXME: remove this when crbug.com/741689 is fixed.
it('RESTART BROWSER crbug.com/741689', SX(async function() {
page.close();
browser = new Browser({headless, args: ['--no-sandbox']});
page = await browser.newPage();
}));
describe('Page.setUserAgent', function() { describe('Page.setUserAgent', function() {
it('should work', SX(async function() { it('should work', SX(async function() {
expect(page.userAgent()).toContain('Mozilla'); expect(page.userAgent()).toContain('Mozilla');