1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-25 16:20:49 +02:00

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!
This commit is contained in:
Jim Fisher
2021-10-25 16:58:34 +01:00
committed by GitHub
parent ec01e75fff
commit d94b229121

View File

@@ -7,6 +7,6 @@ describe('images example', () => {
cy.findByRole('textbox') cy.findByRole('textbox')
.find('img') .find('img')
.should('exist') .should('exist')
.should('have.length', 1) .should('have.length', 2)
}) })
}) })