forked from BrowserStackCE/browserstack-examples-cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcypress.json
More file actions
executable file
·30 lines (30 loc) · 749 Bytes
/
Copy pathcypress.json
File metadata and controls
executable file
·30 lines (30 loc) · 749 Bytes
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
{
"baseUrl":"https://bstackdemo.com/",
"fileServerFolder": ".",
"testFiles": "**/*.spec.ts",
"fixturesFolder": "cypress/fixtures",
"integrationFolder": "cypress/integration",
"pluginsFile": false,
"supportFile": false,
"snapshots": true,
"trashAssetsBeforeRuns": true,
"reporter":"mochawesome",
"chromeWebSecurity": false,
"pageLoadTimeout": 60000,
"reporterOptions":{
"reportDir": "cypress/report/mochawesome-report",
"reportFilename": "testReport",
"charts":true,
"overwrite":false,
"html":true,
"json":false,
"timestamp" : "mm/dd/yyyy_HH:MM:ss"
},
"env": {
"SAMPLE_ENV": "demouser"
},
"component": {
"componentFolder": "src",
"testFiles": "**/*spec.{js,jsx,ts,tsx}"
}
}