PR-421183: trying to fix the pipeline of cypress.

This commit is contained in:
Alejandro Lembke Barrientos 2023-03-02 08:12:41 -06:00
parent 19c805830f
commit 7f25504a21
3 changed files with 5 additions and 1 deletions

View File

@ -16,6 +16,8 @@ jobs:
- run: npm test
cypress-run:
runs-on: ubuntu-latest
env:
PORT: 3000
steps:
- name: Checkout
uses: actions/checkout@v3

View File

@ -22,6 +22,8 @@ jobs:
- run: npm test
cypress-run:
runs-on: ubuntu-latest
env:
PORT: 3000
steps:
- name: Checkout
uses: actions/checkout@v3

View File

@ -5,7 +5,7 @@ export default defineConfig({
/*setupNodeEvents(on, config) {
// implement node event listeners here
},*/
baseUrl: 'http://localhost',
baseUrl: 'http://localhost:3000',
specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}',
experimentalRunAllSpecs: true,
},