1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2024-11-21 17:56:45 +02:00
pigallery2/cypress.config.ts
2023-09-06 16:05:28 +02:00

24 lines
504 B
TypeScript

import {defineConfig} from 'cypress';
export default defineConfig({
e2e: {
'baseUrl': 'http://localhost:8080',
experimentalStudio: true,
supportFile: 'test/cypress/support/e2e.ts',
specPattern:'test/cypress/e2e/**/*.cy.ts',
fixturesFolder:false,
screenshotsFolder:'test/cypress/screenshots',
downloadsFolder:'test/cypress/downloads',
},
component: {
devServer: {
framework: 'angular',
bundler: 'webpack',
},
specPattern: '**/*.cy.ts'
}
});