From 141a79ebe5b95437cd3efd317617409efa77effb Mon Sep 17 00:00:00 2001 From: Stan Stanislaus Date: Fri, 25 Apr 2025 11:16:35 -0500 Subject: [PATCH] fix: correct typo Signed-off-by: Stan Stanislaus --- docs/rules/no-wait-for-multiple-assertions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rules/no-wait-for-multiple-assertions.md b/docs/rules/no-wait-for-multiple-assertions.md index 1154de6d..83a3bd51 100644 --- a/docs/rules/no-wait-for-multiple-assertions.md +++ b/docs/rules/no-wait-for-multiple-assertions.md @@ -7,7 +7,7 @@ ## Rule Details This rule aims to ensure the correct usage of `expect` inside `waitFor`, in the way that they're intended to be used. -When using multiples assertions inside `waitFor`, if one fails, you have to wait for a timeout before seeing it failing. +When using multiple assertions inside `waitFor`, if one fails, you have to wait for a timeout before seeing it failing. Putting one assertion, you can both wait for the UI to settle to the state you want to assert on, and also fail faster if one of the assertions do end up failing