Stricter eslint rules (#472)

Accept stricter eslint rules.
This commit is contained in:
JoelEinbinder
2017-08-22 14:18:07 -07:00
committed by Andrey Lushnikov
parent ce08fc77b1
commit a526e9f9fb
4 changed files with 10 additions and 22 deletions

View File

@@ -1849,7 +1849,7 @@ describe('Page', function() {
it('should allow transparency', SX(async function() {
await page.setViewport({ width: 100, height: 100 });
await page.goto(EMPTY_PAGE);
const screenshot = await page.screenshot({omitBackground:true});
const screenshot = await page.screenshot({omitBackground: true});
expect(screenshot).toBeGolden('transparent.png');
}));
});