Skip to content

Commit

Permalink
debugging github actions is annoying
Browse files Browse the repository at this point in the history
  • Loading branch information
sroertgen committed Aug 31, 2023
1 parent c8e1097 commit 76756d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/searchAndFilter.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ describe("search and filter", () => {
cy.intercept("/w3id.org/search/en/prefLabel.ctx.json").as("ctx")
cy.intercept("/w3id.org/search/en/prefLabel.map.json").as("map")
cy.intercept("/w3id.org/search/en/reg.json").as("reg")
cy.intercept("/w3id.org/search/en/prefLabel.tag.json").as("tag")
// cy.intercept("/w3id.org/search/en/prefLabel.tag.json").as("tag")
cy.intercept("/w3id.org/search/en/prefLabel.store.json").as("store")
// cy.intercept("/w3id.org/index.en.html/page-data.json").as("pageData")
cy.visit("/w3id.org/index.de.html")

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

cy.wait(["@ctx", "@cfg", "@map", "@reg", "@tag", "@store"])
cy.wait(["@ctx", "@cfg", "@map", "@reg", "@store"])
cy.get(".currentLanguage").contains("en").should("exist")
// cy.get("span").contains("Konzept 1").should("not.exist")
cy.get("span", { timeout: 10000 }).contains("Concept 1").should("exist")
Expand Down

0 comments on commit 76756d9

Please sign in to comment.