mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
21 lines
371 B
TypeScript
21 lines
371 B
TypeScript
import {defineConfig} from 'cypress';
|
|
|
|
export default defineConfig({
|
|
|
|
e2e: {
|
|
'baseUrl': 'http://localhost:8080',
|
|
experimentalStudio: true,
|
|
supportFile: 'cypress/support/e2e.ts',
|
|
specPattern:'cypress/e2e/**/*.cy.ts'
|
|
},
|
|
|
|
component: {
|
|
devServer: {
|
|
framework: 'angular',
|
|
bundler: 'webpack',
|
|
},
|
|
specPattern: '**/*.cy.ts'
|
|
}
|
|
|
|
});
|