Skip to content

Commit

Permalink
Fix e2e testcase running issue #798
Browse files Browse the repository at this point in the history
  • Loading branch information
girishpanchal30 committed Sep 28, 2023
1 parent 9d7af99 commit 529d7ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ jobs:
env: host=localhost,port=8080
browser: chrome
install: ${{ ! steps.npm-and-build-cache.outputs.cache-hit }}
headless: true
spec: cypress/integration/${{ matrix.env }}/**/*
- name: Output debug log
if: ${{ failure() }}
Expand Down
9 changes: 5 additions & 4 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,16 @@ module.exports = defineConfig({
},
},
},
videoUploadOnPasses: false,
projectId: 'frqcxp',
experimentalStudio: true,
numTestsKeptInMemory: 0,
e2e: {
// We've imported your old cypress plugins here.
// You may want to clean this up later by importing these.
setupNodeEvents(on, config) {
return require('./cypress/plugins/index.js')(on, config)
},
setupNodeEvents( on, config ) {},
supportFile: false,
baseUrl: 'http://localhost:8080',
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
pageLoadTimeout : 300000,
},
})

0 comments on commit 529d7ad

Please sign in to comment.