mirror of
https://github.com/bpatrik/pigallery2.git
synced 2024-11-21 17:56:45 +02:00
24 lines
504 B
TypeScript
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'
|
|
}
|
|
|
|
});
|