From bac64d83a53bd57bd38e6afb960916e25645166b Mon Sep 17 00:00:00 2001 From: iainrex Date: Fri, 12 Nov 2021 13:33:53 +0000 Subject: [PATCH] docs: Typo on skipFailures example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44ca8c5..913d79a 100644 --- a/README.md +++ b/README.md @@ -156,7 +156,7 @@ it('Has no a11y violations after button click', () => { it('Only logs a11y violations while allowing the test to pass', () => { // Do not fail the test when there are accessibility failures - cy.checkA11y(null, null, null, {skipFailures: true}); + cy.checkA11y(null, null, null, true); })