From 80d89b61fddc2cbd529b67ba5b7be155920a2ffa Mon Sep 17 00:00:00 2001 From: Rashmi-N-Sahoo <163978172+Rashmi-N-Sahoo@users.noreply.github.com> Date: Thu, 11 Jul 2024 23:39:45 +0530 Subject: [PATCH] Update testing-tools.md (#2026) * Update testing-tools.md Updated the Percy section. * Update testing-tools.md Added Ember doc link. * Update guides/release/testing/testing-tools.md Co-authored-by: Ignace Maes --------- Co-authored-by: Anne-Greeth Schot-van Herwijnen Co-authored-by: Ignace Maes --- guides/release/testing/testing-tools.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guides/release/testing/testing-tools.md b/guides/release/testing/testing-tools.md index 71e50bfa3e..42a67d352e 100644 --- a/guides/release/testing/testing-tools.md +++ b/guides/release/testing/testing-tools.md @@ -158,7 +158,9 @@ Ember Exam also lets you randomize how the tests are run. Why would you want to ### Percy -Last but not least, [Percy](https://percy.io/) is a **visual regression testing** tool that helps you catch accidental style changes. You can try it out for free and pay for additional service. +Last but not least, [Percy](https://percy.io/) is a **visual regression testing** tool that ensures consistent user interfaces across different browsers and devices by identifying visual bugs. It captures screenshots of web pages at different development stages and compares them pixel-by-pixel to detect any visual differences. + +Visual regression testing is useful for maintaining visual consistency and quality in your app. Check out the [Percy documentation](https://www.browserstack.com/docs/percy/integrate/ember) to set it up in an Ember app. While we don't recommend this practice in general, you might also use Percy in lieu of application tests to capture complex workflows.