diff --git a/.github/workflows/e2e-home-server.yml b/.github/workflows/e2e-home-server.yml index b70b8a570..2c5a0d72a 100644 --- a/.github/workflows/e2e-home-server.yml +++ b/.github/workflows/e2e-home-server.yml @@ -94,7 +94,7 @@ jobs: run: for i in {1..30}; do curl -s http://localhost:3123/healthcheck && break || sleep 1; done - name: Run E2E Test Suite - run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} + run: yarn dlx mocha-headless-chrome --timeout 3600000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} - name: Archive failed run logs if: ${{ failure() }} diff --git a/.github/workflows/e2e-self-hosted.yml b/.github/workflows/e2e-self-hosted.yml index 1bd16699b..2b8062f48 100644 --- a/.github/workflows/e2e-self-hosted.yml +++ b/.github/workflows/e2e-self-hosted.yml @@ -57,7 +57,7 @@ jobs: run: docker/is-available.sh http://localhost:3123 $(pwd)/logs - name: Run E2E Test Suite - run: yarn dlx mocha-headless-chrome --timeout 3600000 -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} + run: yarn dlx mocha-headless-chrome --timeout 3600000 -a no-sandbox -a disable-setuid-sandbox -f http://localhost:9001/mocha/test.html?suite=${{ inputs.suite }} - name: Archive failed run logs if: ${{ failure() }}