diff --git a/.github/workflows/cypress-matrix.yml b/.github/workflows/cypress-matrix.yml index f5aefec7c..a36bf23ca 100644 --- a/.github/workflows/cypress-matrix.yml +++ b/.github/workflows/cypress-matrix.yml @@ -116,11 +116,11 @@ jobs: - name: Run Cypress Tests if: ${{ github.repository != 'bluehost/bluehost-wordpress-plugin' || github.actor == 'dependabot[bot]' }} - run: npm run test:e2e -- -browser chrome + run: npm run test:e2e -- --browser chrome - name: Run Cypress Tests if: ${{ github.repository == 'bluehost/bluehost-wordpress-plugin' && github.actor != 'dependabot[bot]' }} - run: npm run test:e2e -- -browser chrome --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag "bluehost,php-${{ matrix.phpVersion }},wp-${{ matrix.wpVersion }}" + run: npm run test:e2e -- --browser chrome --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag "bluehost,php-${{ matrix.phpVersion }},wp-${{ matrix.wpVersion }}" - name: Store screenshots of test failures if: ${{ failure() }} diff --git a/.github/workflows/cypress-tests-beta.yml b/.github/workflows/cypress-tests-beta.yml index df99148af..c4de4464b 100644 --- a/.github/workflows/cypress-tests-beta.yml +++ b/.github/workflows/cypress-tests-beta.yml @@ -100,11 +100,11 @@ jobs: - name: Run Cypress Tests if: ${{ github.repository != 'bluehost/bluehost-wordpress-plugin' || github.actor == 'dependabot[bot]' }} - run: npm run test:e2e -- -browser chrome + run: npm run test:e2e -- --browser chrome - name: Run Cypress Tests if: ${{ github.repository == 'bluehost/bluehost-wordpress-plugin' && github.actor != 'dependabot[bot]' }} - run: npm run test:e2e -- -browser chrome --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag "bluehost, wp-beta" + run: npm run test:e2e -- --browser chrome --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag "bluehost, wp-beta" - name: Store screenshots of test failures if: failure() diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 03e37b390..80fe9d5f7 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -103,11 +103,11 @@ jobs: - name: Run Cypress Tests if: ${{ github.repository != 'bluehost/bluehost-wordpress-plugin' || github.actor == 'dependabot[bot]' }} - run: npm run test:e2e -- -browser chrome + run: npm run test:e2e -- --browser chrome - name: Run Cypress Tests if: ${{ github.repository == 'bluehost/bluehost-wordpress-plugin' && github.actor != 'dependabot[bot]' }} - run: npm run test:e2e -- -browser chrome --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag bluehost + run: npm run test:e2e -- --browser chrome --record --key ${{ secrets.CYPRESS_RECORD_KEY }} --tag bluehost - name: Store screenshots of test failures if: failure()