- add url and page as env variables to choice where to test and update the others - To pass a variable to a job's service, they have to be declared in the "variables" global -> doesn't work (see: [#37]) - use of the deployed image to do E2E test instead of services of gitlab
14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
specPattern: [
|
|
"cypress/e2e/*.cy.{js,jsx,ts,tsx}",
|
|
"cypress/unit/*.cy.{js,jsx,ts,tsx}",
|
|
],
|
|
},
|
|
});
|