diff --git a/.github/workflows/tugboat.yml b/.github/workflows/tugboat.yml index 4aedb9444c..17d3b315d0 100644 --- a/.github/workflows/tugboat.yml +++ b/.github/workflows/tugboat.yml @@ -87,7 +87,7 @@ jobs: CYPRESS_baseUrl: ${{steps.get-status-env.outputs.result}} with: config-file: ./cypress.json - working-directory: ./packages/e2e-test/src + working-directory: ./packages/e2e-test browser: chrome install: false headless: true @@ -97,7 +97,7 @@ jobs: uses: actions/upload-artifact@v1 with: name: cypress-videos - path: ./packages/e2e-test/src/cypress/videos + path: ./packages/e2e-test/cypress/videos - name: set status if: ${{ failure() }} diff --git a/packages/e2e-test/cypress.json b/packages/e2e-test/cypress.json new file mode 100644 index 0000000000..22ea4a94ca --- /dev/null +++ b/packages/e2e-test/cypress.json @@ -0,0 +1,8 @@ +{ + "baseUrl": "http://localhost:7000", + "integrationFolder": "./src/cypress/integration", + "supportFile": "./src/cypress/support", + "fixturesFolder": "./src/cypress/fixures", + "pluginFile": "./src/cypress/plugins", + "defaultCommandTimeout": 10000 +} diff --git a/packages/e2e-test/src/cypress.json b/packages/e2e-test/src/cypress.json deleted file mode 100644 index 54b24ebbf0..0000000000 --- a/packages/e2e-test/src/cypress.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "baseUrl": "http://localhost:7000", - "integrationFolder": "./cypress/integration", - "supportFile": "./cypress/support", - "fixturesFolder": "./cypress/fixures", - "pluginFile": "./cypress/plugins", - "defaultCommandTimeout": 10000 -}