forked from SwaprHQ/swapr-dapp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
cypress.json
34 lines (34 loc) · 921 Bytes
/
cypress.json
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
{
"baseUrl": "http://localhost:3000",
"userAgent": "synpress",
"retries": { "runMode": 0, "openMode": 0 },
"integrationFolder": "tests/cypress/integration",
"screenshotsFolder": "public-report/screenshots",
"videosFolder": "public-report/videos",
"chromeWebSecurity": true,
"viewportWidth": 1366,
"viewportHeight": 768,
"supportFile": "tests/cypress/support/index.ts",
"video": false,
"component": {
"componentFolder": ".",
"testFiles": "**/*spec.{js,jsx,ts,tsx}"
},
"env": {
"coverage": false
},
"defaultCommandTimeout": 30000,
"pageLoadTimeout": 30000,
"requestTimeout": 30000,
"reporter": "cypress-mochawesome-reporter",
"reporterOptions": {
"reportDir": "mochawesome-report",
"charts": true,
"overwrite": false,
"html": false,
"json": true,
"reportPageTitle": "My Test Suite",
"embeddedScreenshots": true,
"inlineAssets": true
}
}