From 743a888ba5a719897d4ff876c9b3cb80aa38abef Mon Sep 17 00:00:00 2001 From: Romain Trotard Date: Mon, 4 Dec 2023 10:40:22 +0100 Subject: [PATCH] docs: fix typo in testing guidelines (#2201) --- docs/app/routes/docs/guides/testing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/app/routes/docs/guides/testing.mdx b/docs/app/routes/docs/guides/testing.mdx index c0edb1e2d2..d99f9f1674 100644 --- a/docs/app/routes/docs/guides/testing.mdx +++ b/docs/app/routes/docs/guides/testing.mdx @@ -127,7 +127,7 @@ correctly made. ## Skipping Animations The solution to this problem is to skip animations when testing. This can be done by using the `Globals` object and calling the `assign` -method setting `skipAnimations` to `true`. You can does this immediately in the `setup` file for your tests or if you want more granual +method setting `skipAnimations` to `true`. You can do this immediately in the `setup` file for your tests or if you want more granual control then you could use the `beforeAll | beforeEach` hooks to set it. ```tsx lines=2,5-10