mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
* chore: removed unused files Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * chore: remove cypress deprecated config option Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * chore: remove deprecated log file Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> --------- Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
projectId: 'xkm1b4',
|
|
e2e: {
|
|
baseUrl: 'http://localhost:5055',
|
|
video: true,
|
|
},
|
|
env: {
|
|
ADMIN_EMAIL: 'admin@seerr.dev',
|
|
ADMIN_PASSWORD: 'test1234',
|
|
USER_EMAIL: 'friend@seerr.dev',
|
|
USER_PASSWORD: 'test1234',
|
|
},
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0,
|
|
},
|
|
});
|