1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/cypress.config.ts
2023-09-06 12:56:52 +02:00

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