28 lines
907 B
TypeScript
28 lines
907 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
video: false,
|
|
fixturesFolder: 'src/test/javascript/cypress/fixtures',
|
|
screenshotsFolder: 'build/cypress/screenshots',
|
|
downloadsFolder: 'build/cypress/downloads',
|
|
videosFolder: 'build/cypress/videos',
|
|
chromeWebSecurity: true,
|
|
viewportWidth: 1200,
|
|
viewportHeight: 720,
|
|
retries: 2,
|
|
env: {
|
|
authenticationUrl: '/api/authentication',
|
|
},
|
|
e2e: {
|
|
// We've imported your old cypress plugins here.
|
|
// You may want to clean this up later by importing these.
|
|
async setupNodeEvents(on, config) {
|
|
return (await import('./src/test/javascript/cypress/plugins/index')).default(on, config);
|
|
},
|
|
baseUrl: 'http://localhost:8080/',
|
|
specPattern: 'src/test/javascript/cypress/e2e/**/*.cy.ts',
|
|
supportFile: 'src/test/javascript/cypress/support/index.ts',
|
|
experimentalRunAllSpecs: true,
|
|
},
|
|
});
|