From 56695c86c499c457e06f7b9d18faf7d2c712add2 Mon Sep 17 00:00:00 2001 From: Paul Horn Date: Thu, 25 Jan 2024 18:15:31 +0100 Subject: [PATCH] Try to fix e2e test --- .github/workflows/rust.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index bc1019a..9dfad59 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -72,16 +72,15 @@ jobs: with: repository: neo4j-examples/movies-harness path: e2e - - uses: cypress-io/github-action@v5 + - uses: cypress-io/github-action@v6 env: NEO4J_VERSION: ${{ matrix.neo4j-version }} NEO4J_URI: bolt://localhost:7687 NEO4J_DATABASE: "neo4j" NEO4J_USER: neo4j NEO4J_PASSWORD: neo4jpass - DEBUG: '@cypress/github-action' with: working-directory: e2e browser: chrome - # sh is needed because of https://github.com/cypress-io/github-action/issues/482 - start: sh ../target/release/movies-rust-bolt \ No newline at end of file + start: ../target/release/movies-rust-bolt + wait-on: 'http://localhost:8080' \ No newline at end of file