Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LeviPesin authored and jrandolf committed Jun 20, 2022
1 parent 38db312 commit 05d3d01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/src/screenshot.spec.ts
Expand Up @@ -188,14 +188,14 @@ describe('Screenshots', function () {
'screenshot-sanity.png'
);
});
itHeadfulOnly('should work in \'fromSurface: false\' mode', async () => {
itHeadfulOnly('should work in "fromSurface: false" mode', async () => {
const { page, server } = getTestState();

await page.setViewport({ width: 500, height: 500 });
await page.goto(server.PREFIX + '/grid.html');
const screenshot = await page.screenshot({
fromSurface: false
});
});
expect(screenshot).toBeGolden('screenshot-fromsurface-false.png');
});
});
Expand Down

0 comments on commit 05d3d01

Please sign in to comment.