1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/cypress.config.ts

24 lines
504 B
TypeScript
Raw Normal View History

2023-09-06 18:56:52 +08:00
import {defineConfig} from 'cypress';
export default defineConfig({
e2e: {
'baseUrl': 'http://localhost:8080',
experimentalStudio: true,
2023-09-06 22:05:28 +08:00
supportFile: 'test/cypress/support/e2e.ts',
specPattern:'test/cypress/e2e/**/*.cy.ts',
fixturesFolder:false,
screenshotsFolder:'test/cypress/screenshots',
downloadsFolder:'test/cypress/downloads',
2023-09-06 18:56:52 +08:00
},
component: {
devServer: {
framework: 'angular',
bundler: 'webpack',
},
specPattern: '**/*.cy.ts'
}
});