From fb1999d95c82a1c6ef187f6ad06d929997a4292c Mon Sep 17 00:00:00 2001 From: Gogetter Date: Tue, 9 Jun 2026 12:20:51 +0300 Subject: [PATCH] Fix typo in interaction testing documentation Fixed a typo in the /docs/writing-tests/interaction-testing.mdx file line 57. The error : ...We (and [Testing Libary](https://testing-library... changes the word Libary to Library --- docs/writing-tests/interaction-testing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing-tests/interaction-testing.mdx b/docs/writing-tests/interaction-testing.mdx index 7d494deac283..e270fb8ab81f 100644 --- a/docs/writing-tests/interaction-testing.mdx +++ b/docs/writing-tests/interaction-testing.mdx @@ -54,7 +54,7 @@ The subjects are listed here, with links to their full Testing Library documenta -Note the order of this list! We (and [Testing Libary](https://testing-library.com/docs/queries/about#priority)) highly encourage you to query for elements in a way that resembles the way a real person would interact with your UI. For example, finding elements by their accessible role helps ensure that the most people can use your component. While using `data-testid` should be a last resort, only after trying every other approach. +Note the order of this list! We (and [Testing Library](https://testing-library.com/docs/queries/about#priority)) highly encourage you to query for elements in a way that resembles the way a real person would interact with your UI. For example, finding elements by their accessible role helps ensure that the most people can use your component. While using `data-testid` should be a last resort, only after trying every other approach.