File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 7
7
gp sync-done install
8
8
command: npm run start
9
9
- init : gp sync-await install
10
- command : npx cypress run --spec "**/sanity.js,**/**/solution.spec.js" --browser chrome
10
+ command : npx cypress run --spec "**/sanity.js,**/**/solution.spec.js"
11
11
ports :
12
12
- port : 5900
13
13
onOpen : ignore
Original file line number Diff line number Diff line change 13
13
"eject" : " react-scripts eject" ,
14
14
"cy:open" : " cypress open" ,
15
15
"cy:ci" : " cypress run" ,
16
- "test:visual" : " wdio run ./wdio.conf.js" ,
16
+ "test:visual:us" : " wdio run ./wdio.conf.js" ,
17
+ "test:visual:eu" : " REGION=eu wdio run ./wdio.conf.js" ,
17
18
"test:debug" : " node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch" ,
18
19
"test:sanity" : " cypress run --spec **/sanity.js,**/**/solution.spec.js --browser chrome"
19
20
},
Original file line number Diff line number Diff line change 1
1
const visualOptions = {
2
2
apiKey : process . env . SCREENER_API_KEY ,
3
- projectName : 'testing-for-good '
3
+ projectName : 'comprehensive-testing '
4
4
} ;
5
5
const sauceOptions = {
6
6
username : process . env . SAUCE_USERNAME ,
7
- accesskey : process . env . SAUCE_ACCESS_KEY
7
+ accesskey : process . env . SAUCE_ACCESS_KEY ,
8
+ extendedDebugging : true ,
9
+ capturePerformance : true ,
8
10
} ;
9
11
10
12
exports . config = {
11
13
runner : 'local' ,
12
14
user : process . env . SAUCE_USERNAME ,
13
15
key : process . env . SAUCE_ACCESS_KEY ,
14
- region : 'us' ,
16
+ region : process . env . REGION || 'us' ,
15
17
services : [
16
18
[ 'sauce' , {
17
- sauceConnect : true
19
+ sauceConnect : true ,
20
+ sauceConnectOpts : {
21
+ noSslBumpDomains : 'all' ,
22
+ } ,
18
23
} ]
19
24
] ,
20
25
specs : [
You can’t perform that action at this time.
0 commit comments