Skip to content

Commit

Permalink
add wait statement
Browse files Browse the repository at this point in the history
  • Loading branch information
sroertgen committed Aug 31, 2023
1 parent fc9318b commit a3ae364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/searchAndFilter.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe("search and filter", () => {
cy.visit("/w3id.org/index.de.html")

cy.contains("en").click()

cy.wait(4000) // eslint-disable-line
cy.get("span", { timeout: 10000 }).contains("Konzept 2").should("not.exist")
cy.get("span").contains("Concept 1").should("exist")
cy.findByRole("textbox").type("Concept 2")
Expand Down

0 comments on commit a3ae364

Please sign in to comment.