1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-12-21 01:22:08 +02:00
pigallery2/cypress.config.ts

24 lines
504 B
TypeScript
Raw Normal View History

2023-09-06 12:56:52 +02:00
import {defineConfig} from 'cypress';
export default defineConfig({
e2e: {
'baseUrl': 'http://localhost:8080',
experimentalStudio: true,
2023-09-06 16:05:28 +02: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 12:56:52 +02:00
},
component: {
devServer: {
framework: 'angular',
bundler: 'webpack',
},
specPattern: '**/*.cy.ts'
}
});