Skip to content

Commit

Permalink
fix(webkit): fix non-mac screenshots w/ dsf (#1665)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman authored Apr 4, 2020
1 parent a91304a commit 17039f1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"playwright": {
"chromium_revision": "754895",
"firefox_revision": "1069",
"webkit_revision": "1187"
"webkit_revision": "1188"
},
"scripts": {
"ctest": "cross-env BROWSER=chromium node test/test.js",
Expand Down
2 changes: 1 addition & 1 deletion test/golden-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function compareImages(actualBuffer, expectedBuffer, mimeType) {
};
}
const diff = new PNG({width: expected.width, height: expected.height});
const count = pixelmatch(expected.data, actual.data, diff.data, expected.width, expected.height, {threshold: 0.15});
const count = pixelmatch(expected.data, actual.data, diff.data, expected.width, expected.height, {threshold: 0.2});
return count > 0 ? { diff: PNG.sync.write(diff) } : null;
}

Expand Down
4 changes: 2 additions & 2 deletions test/screenshot.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ module.exports.describe = function({testRunner, expect, product, playwright, FFO
expect(screenshot).toBeInstanceOf(Buffer);
}
});
it.fail(WEBKIT)('should work with device scale factor', async({browser, server}) => {
it('should work with device scale factor', async({browser, server}) => {
const context = await browser.newContext({ viewport: { width: 320, height: 480 }, deviceScaleFactor: 2 });
const page = await context.newPage();
await page.goto(server.PREFIX + '/grid.html');
Expand Down Expand Up @@ -394,7 +394,7 @@ module.exports.describe = function({testRunner, expect, product, playwright, FFO
expect(screenshot).toBeGolden('screenshot-element-mobile.png');
await context.close();
});
it.fail(WEBKIT && LINUX).skip(FFOX)('should work with device scale factor', async({browser, server}) => {
it.skip(FFOX)('should work with device scale factor', async({browser, server}) => {
const context = await browser.newContext({ viewport: { width: 320, height: 480 }, deviceScaleFactor: 2 });
const page = await context.newPage();
await page.goto(server.PREFIX + '/grid.html');
Expand Down

0 comments on commit 17039f1

Please sign in to comment.