diff --git a/dev_docs/01_getting_started.md b/dev_docs/01_getting_started.md index 5be8bc409..38eff6af4 100644 --- a/dev_docs/01_getting_started.md +++ b/dev_docs/01_getting_started.md @@ -55,3 +55,4 @@ The guidelines referenced above should be sufficient for the most common tasks. - [How to update the documentation website](./04_how_to_update_docs.md) - [Icons](./05_icons.md) - [Miscellaneous](./06_misc.md) +- [Visual Testing](./07_visual_testing_guide.md) diff --git a/dev_docs/07_visual_testing_guide.md b/dev_docs/07_visual_testing_guide.md index 989642d44..0ba24d4f5 100644 --- a/dev_docs/07_visual_testing_guide.md +++ b/dev_docs/07_visual_testing_guide.md @@ -75,7 +75,7 @@ KDS has a visual testing system that allows you to take snapshots of how KDS Com await click('button'); ``` - Here, *'button'* is the CSS selector for the component. You can pass different selectors to the functions used to simulate user interaction as per requirement. + Here, *'button'* is the CSS selector for the component. You can pass different selectors to the functions, exposed by [`visual.testUtils.js`](../jest.conf/visual.testUtils.js), to simulate user interaction as per requirement. ## Implementation details