Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
Fix issue with chrome
  • Loading branch information
kshyk authored Oct 28, 2024
1 parent 2fba250 commit 6142913
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: yarn install --frozen-lockfile

- name: Run TestCafe tests
run: npx testcafe ${{ matrix.browser }}:headless tests/
run: npx testcafe "${{ matrix.browser }} --headless --no-sandbox" tests/

mac_os:
name: ${{ matrix.os }} (${{ matrix.browser }})
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
yarn global add testcafe
- name: Run TestCafe tests
run: npx testcafe ${{ matrix.browser }}:headless tests/ --disable-screenshots --video "" --video-options ""
run: npx testcafe "${{ matrix.browser }} --headless --no-sandbox" tests/ --disable-screenshots --video "" --video-options ""

windows_os:
name: ${{ matrix.os }} (${{ matrix.browser }})
Expand Down Expand Up @@ -99,5 +99,5 @@ jobs:
run: yarn install --frozen-lockfile

- name: Run TestCafe tests
run: npx testcafe ${{ matrix.browser }}:headless tests/
run: npx testcafe "${{ matrix.browser }} --headless --no-sandbox" tests/
shell: bash

0 comments on commit 6142913

Please sign in to comment.