From d94b22912164ca37266edaf70d802253ea6877d0 Mon Sep 17 00:00:00 2001 From: Jim Fisher Date: Mon, 25 Oct 2021 16:58:34 +0100 Subject: [PATCH] Fix examples/images integration test (#4628) Sorry, I broke this test in https://github.com/ianstormtaylor/slate/pull/4616 by adding a second image to the example! --- cypress/integration/examples/images.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/integration/examples/images.ts b/cypress/integration/examples/images.ts index ee5b26c4ee..57f5256a3f 100644 --- a/cypress/integration/examples/images.ts +++ b/cypress/integration/examples/images.ts @@ -7,6 +7,6 @@ describe('images example', () => { cy.findByRole('textbox') .find('img') .should('exist') - .should('have.length', 1) + .should('have.length', 2) }) })