Skip to content

Commit

Permalink
Remove testcafe concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
cea2aj committed Apr 8, 2022
1 parent 5047205 commit 9ebf280
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/run_browserstack_acceptance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ if [[ $GITHUB_REF_NAME == release/*
then
npx testcafe "browserstack:ie@11.0,browserstack:safari" tests/acceptance/acceptancesuites/*.js -q
else
npx testcafe -c 2 "browserstack:ie@11.0" tests/acceptance/acceptancesuites/*.js -q
npx testcafe "browserstack:ie@11.0" tests/acceptance/acceptancesuites/*.js -q
fi
6 changes: 3 additions & 3 deletions .github/run_headless_acceptance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [[ $GITHUB_REF_NAME == release/*
|| $GITHUB_REF_NAME == master
|| $GITHUB_REF_NAME == support/* ]]
then
npx testcafe -c 3 "chrome:headless,firefox:headless" tests/acceptance/acceptancesuites/*.js -q
npx testcafe "chrome:headless,firefox:headless" tests/acceptance/acceptancesuites/*.js -q
else
npx testcafe -c 3 "chrome:headless" tests/acceptance/acceptancesuites/*.js -q
fi
npx testcafe "chrome:headless" tests/acceptance/acceptancesuites/*.js -q
fi

0 comments on commit 9ebf280

Please sign in to comment.