diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 3232d5448..bad065db7 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -57,7 +57,7 @@ jobs: - name: Start Frontend run: | - nohup yarn --cwd ./src/Ombi/ClientApp start & + nohup yarn --cwd ./src/Ombi/ClientApp run start:nomap & - name: Cypress Tests uses: cypress-io/github-action@v2.8.2 @@ -70,8 +70,8 @@ jobs: group: "UI - Chrome" wait-on: http://localhost:3577/ parallel: true - # 7 minutes - wait-on-timeout: 420 + # 8 minutes + wait-on-timeout: 480 env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/src/Ombi/ClientApp/package.json b/src/Ombi/ClientApp/package.json index 6c1713eff..c5b8d0a83 100644 --- a/src/Ombi/ClientApp/package.json +++ b/src/Ombi/ClientApp/package.json @@ -4,6 +4,7 @@ "scripts": { "ng": "ng", "start": "ng serve --port 3578 --configuration hmr", + "start:nomap": "ng serve --port 3578 --source-map=false", "build": "node --max_old_space_size=6144 node_modules/@angular/cli/bin/ng build --prod", "lint": "ng lint" },