mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
15 lines
361 B
TypeScript
15 lines
361 B
TypeScript
import { defineConfig } from 'cypress'
|
|
|
|
export default defineConfig({
|
|
videosFolder: 'cypress/videos',
|
|
video: false,
|
|
screenshotsFolder: 'cypress/screenshots',
|
|
fixturesFolder: 'cypress/fixtures',
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
return require('./cypress/plugins/index.ts')(on, config)
|
|
},
|
|
baseUrl: 'http://localhost:4200',
|
|
},
|
|
})
|