From 1a606a06a639e0b5590b6cf038a5f995fb6cccd9 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 18 Dec 2024 15:35:52 +0100 Subject: [PATCH] Set maxDiffPixelRatio to 0.001 Co-authored-by: Duc Trung Le --- ui-tests/playwright.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui-tests/playwright.config.js b/ui-tests/playwright.config.js index 35b805c0..09eff6b1 100644 --- a/ui-tests/playwright.config.js +++ b/ui-tests/playwright.config.js @@ -20,7 +20,7 @@ module.exports = { }, expect: { toMatchSnapshot: { - maxDiffPixelRatio: 0.01 + maxDiffPixelRatio: 0.001 } } };