mirror of
https://github.com/seerr-team/seerr.git
synced 2025-12-23 23:58:07 -05:00
* ci: update cypress project id * try without cache * add install command * install cypress dep manually * use enable pre-post-scripts instead of manually installing * revert back to manual install * move cypress binary install after cache
20 lines
367 B
TypeScript
20 lines
367 B
TypeScript
import { defineConfig } from 'cypress';
|
|
|
|
export default defineConfig({
|
|
projectId: 'onnqy3',
|
|
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,
|
|
},
|
|
});
|