mirror of
https://github.com/seerr-team/seerr.git
synced 2026-06-15 11:59:11 -04:00
28 lines
570 B
TypeScript
28 lines
570 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
projectId: 'onnqy3',
|
|
e2e: {
|
|
baseUrl: 'http://localhost:5055',
|
|
video: true,
|
|
},
|
|
component: {
|
|
devServer: {
|
|
framework: 'next',
|
|
bundler: 'webpack',
|
|
},
|
|
supportFile: 'cypress/support/component.ts',
|
|
indexHtmlFile: 'cypress/support/component-index.html',
|
|
},
|
|
env: {
|
|
ADMIN_EMAIL: 'admin@seerr.dev',
|
|
ADMIN_PASSWORD: 'test1234',
|
|
USER_EMAIL: 'friend@seerr.dev',
|
|
USER_PASSWORD: 'test1234',
|
|
},
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0,
|
|
},
|
|
});
|