18 lines
264 B
TypeScript
18 lines
264 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
|
|
e2e: {
|
|
'baseUrl': 'http://localhost:4200'
|
|
},
|
|
|
|
|
|
component: {
|
|
devServer: {
|
|
framework: 'angular',
|
|
bundler: 'webpack',
|
|
},
|
|
specPattern: '**/*.cy.ts'
|
|
}
|
|
|
|
}) |