Skip to content

Commit

Permalink
lets try headed mode 🤷
Browse files Browse the repository at this point in the history
  • Loading branch information
sroertgen committed Aug 31, 2023
1 parent a3ae364 commit 1d6b054
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:
strategy:
matrix:
node-version: [18.x]
container: cypress/browsers:node18.12.0-chrome106-ff106
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -67,6 +66,7 @@ jobs:
uses: cypress-io/github-action@v5
with:
browser: chrome
headed: true
start: npm run develop -- -p 8000
wait-on: http://localhost:8000/index.de.html
config: baseUrl=http://localhost:8000
Expand Down
3 changes: 1 addition & 2 deletions cypress/e2e/searchAndFilter.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +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("Konzept 2").should("not.exist")
cy.get("span").contains("Concept 1").should("exist")
cy.findByRole("textbox").type("Concept 2")
cy.get("span").contains("Concept 1").should("exist")
Expand Down

0 comments on commit 1d6b054

Please sign in to comment.