forked from EOS-uiux-Solutions/user-story
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cypress.json
29 lines (29 loc) · 798 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
{
"baseUrl": "http://localhost:3000",
"env": {
"testUser":{
"username": "user1",
"email": "[email protected]",
"password": "password"
},
"testUser2":{
"username": "user1",
"email": "[email protected]",
"password": "password"
},
"updatedUser": {
"name": "user1-updated",
"bio": "Hello, this is a updated bio for testing",
"profession": "updated-profession",
"company": "updated-company",
"linkedin": "updated-linkedin",
"twitter": "updated-twitter"
},
"testStory": {
"title": "This is a test story",
"product": "EOS Icons",
"category": "Documentation"
}
},
"testFiles": ["auth.spec.js","new_story.spec.js","user_story.spec.js","dashboard.spec.js", "user_account.spec.js"]
}