mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-01 11:26:13 +01:00
15 lines
344 B
JavaScript
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}',
|
|
],
|
|
},
|
|
});
|