-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.e2e.config.ts
47 lines (47 loc) · 1.26 KB
/
cypress.e2e.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
export const e2eConfig = {
projectId: 'rncrpx',
videosFolder: 'cypress/videos',
screenshotsFolder: 'cypress/screenshots',
fixturesFolder: 'cypress/fixtures',
video: true,
experimentalStudio: true,
waitForAnimations: true,
defaultCommandTimeout: 40000,
env: {
folderImagesChartsCompare: 'cypress/images/', // folder images to compare with canvas charts
pixelmatchThreshold: 0.2, // Use to compare threshold with image of images
mobileViewportWidthBreakpoint: 600,
baseUrl: 'https://api-sky-krono.skyzerozx.com',
service: {
visit: 'http://localhost:4200',
api: 'https://api-sky-krono.skyzerozx.com',
},
dateRange: {
dateInit: '25',
dateEnd: '27',
},
users: {
admin: {
username: '[email protected]',
name: 'SkyBot',
fatherLastName: 'paterno',
motherLastName: 'materno',
password: 'Admin1',
role: 'admin',
},
employee: {
username: '[email protected]',
password: 'Admin1',
role: 'employee',
},
firstLogin: {
username: '[email protected]',
password: 'vdvixlAlms',
role: 'admin',
},
reset: {
username: '[email protected]',
},
},
},
};