File tree Expand file tree Collapse file tree 2 files changed +19
-3
lines changed
Expand file tree Collapse file tree 2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 11node_modules /
22local.log
33errorShots
4+ package-lock.json
Original file line number Diff line number Diff line change @@ -3,10 +3,23 @@ const parallelConfig = {
33 maxInstances : 10 ,
44 commonCapabilities : {
55 'bstack:options' : {
6- projectName : 'sample-tests-ai' ,
7- buildName : 'wdio-mocha-automate'
6+ buildName : 'Browserstack Build' ,
7+ source : 'webdriverio:sample-master:v1.2' ,
8+ projectName : 'Browserstack Samples' ,
89 }
910 } ,
11+ services : [
12+ [
13+ 'browserstack' ,
14+ {
15+ buildIdentifier : '#${BUILD_NUMBER}' ,
16+ testObservability : true ,
17+ testObservabilityOptions : {
18+ buildTag : [ 'bstack_sample' ]
19+ }
20+ } ,
21+ ] ,
22+ ] ,
1023 capabilities : [
1124 {
1225 browserName : 'Chrome' ,
@@ -34,9 +47,11 @@ const parallelConfig = {
3447 }
3548 ] ,
3649} ;
50+
3751exports . config = { ...baseConfig , ...parallelConfig } ;
52+
3853// Code to support common capabilities
3954exports . config . capabilities . forEach ( function ( caps ) {
4055 for ( var i in exports . config . commonCapabilities )
4156 caps [ i ] = { ...caps [ i ] , ...exports . config . commonCapabilities [ i ] } ;
42- } ) ;
57+ } ) ;
You can’t perform that action at this time.
0 commit comments