-
Notifications
You must be signed in to change notification settings - Fork 31
/
cypress.json
36 lines (36 loc) · 1.07 KB
/
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
35
36
{
"fixturesFolder": "./test/cypress/fixtures",
"integrationFolder": "./test/cypress/integration",
"pluginsFile": "./test/cypress/plugins/index.ts",
"supportFile": "./test/cypress/support/index.ts",
"numTestsKeptInMemory": 1,
"videosFolder": "./test/cypress/videos",
"video": true,
"screenshotsFolder": "./test/cypress/screenshots",
"testFiles": "**/*.spec.[jt]s",
"ignoreTestFiles": "**/example*.js",
"baseUrl": "https://app.contentful.com",
"reporter": "cypress-multi-reporters",
"reporterOptions": {
"reporterEnabled": "mochawesome, mocha-junit-reporter",
"mochawesomeReporterOptions": {
"reportDir": "./test/cypress/reports/separate-reports",
"overwrite": false,
"html": false,
"json": true
},
"mochaJunitReporterReporterOptions": {
"mochaFile": "./test/cypress/reports/reports-[hash].xml"
}
},
"blockHosts": [
"*intercomcdn.com",
"*segment.io",
"*segment.com",
"*google-analytics.com",
"*wootric.com"
],
"chromeWebSecurity": false,
"defaultCommandTimeout": 30000,
"retries": 2
}