mirror of
https://git.zavage.net/Zavage-Software/skrill-frontend.git
synced 2025-01-18 11:31:16 -07:00
16 lines
257 B
TypeScript
16 lines
257 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:4200',
|
|
},
|
|
|
|
component: {
|
|
devServer: {
|
|
framework: 'angular',
|
|
bundler: 'webpack',
|
|
},
|
|
specPattern: '**/*.cy.ts',
|
|
},
|
|
});
|