Skip to content

Commit

Permalink
feat(fab): Update for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
williamernest committed Apr 12, 2018
1 parent 43e58d4 commit 3748f31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/screenshot/screenshot.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export default class Screenshot {
async takeScreenshot_() {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto(`http://localhost:8080/${this.urlPath_}`, { "waitUntil": "networkidle2" });
await page.goto(`http://localhost:8080/${this.urlPath_}`, {'waitUntil': 'networkidle2'});
const imageBuffer = await page.screenshot();
await browser.close();
return imageBuffer;
Expand Down

0 comments on commit 3748f31

Please sign in to comment.