Angular-Template/cypress.config.ts
2024-08-22 07:00:57 +03:00

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'
}
})