skrill-frontend/cypress.config.ts

16 lines
257 B
TypeScript
Raw Normal View History

2024-07-28 03:04:23 -06:00
import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:4200',
},
component: {
devServer: {
framework: 'angular',
bundler: 'webpack',
},
specPattern: '**/*.cy.ts',
},
});