Files
GitList/cypress.config.js
Klaus Silveira a4289ed4ea Updated cypress.
2025-08-18 10:38:28 -04:00

15 lines
344 B
JavaScript

import { defineConfig } from 'cypress';
export default defineConfig({
video: false,
screenshotOnRunFailure: false,
e2e: {
baseUrl: 'http://0.0.0.0:8880',
supportFile: false,
specPattern: [
'tests/cypress/integration/**/*.spec.{js,ts,jsx,tsx}',
'tests/cypress/integration/**/*.cy.{js,ts,jsx,tsx}',
],
},
});