@@ -2,43 +2,39 @@ exports.config = {
22 user : process . env . LT_USERNAME || "YOUR LAMBDATEST USERNAME" ,
33 key : process . env . LT_ACCESS_KEY || "YOUR LAMBDATEST ACCESS KEY" ,
44
5- updateJob : false ,
6- specs : [ "../tests/specs/single_test.js" ] ,
7- exclude : [ ] ,
5+ updateJob : false ,
6+ specs : [ "../tests/specs/single_test.js" ] ,
7+ exclude : [ ] ,
88
9- capabilities : [
10- {
11- browserName : "chrome" ,
12- version : "latest" ,
13- platform : "WIN10" ,
14- name : "webdriverIO-single_test" ,
15- build : "webdriverIO-lambdatest" ,
16- visual : false ,
17- video : true ,
18- console : false ,
19- network : false ,
20- accessibility : false , // Enable accessibility testing
21- accessibility . wcagVersion : 'wcag21a' , // Specify WCAG version (e.g., WCAG 2.1 Level A)
22- accessibility . bestPractice : false , // Exclude best practice issues from results
23- accessibility . needsReview : false // Include issues that need review
9+ capabilities : [
10+ {
11+ browserName : "chrome" ,
12+ browserVersion : "latest" ,
13+ platformName : "Windows 10" ,
14+ name : "webdriverIO-single_test" ,
15+ build : "webdriverIO-lambdatest" ,
16+ visual : false ,
17+ video : true ,
18+ console : false ,
19+ network : false ,
20+ accessibility : false ,
21+ } ,
22+ ] ,
2423
25- } ,
26- ] ,
27-
28- logLevel : "info" ,
29- coloredLogs : true ,
30- screenshotPath : "./errorShots/" ,
31- baseUrl : "" ,
32- waitforTimeout : 10000 ,
33- connectionRetryTimeout : 90000 ,
34- connectionRetryCount : 3 ,
35- path : "/wd/hub" ,
36- hostname : "hub.lambdatest.com" ,
37- port : 80 ,
24+ logLevel : "info" ,
25+ coloredLogs : true ,
26+ screenshotPath : "./errorShots/" ,
27+ baseUrl : "" ,
28+ waitforTimeout : 10000 ,
29+ connectionRetryTimeout : 90000 ,
30+ connectionRetryCount : 3 ,
31+ path : "/wd/hub" ,
32+ hostname : "hub.lambdatest.com" ,
33+ port : 80 ,
3834
39- framework : "mocha" ,
40- mochaOpts : {
41- ui : "bdd" ,
42- timeout : 20000 ,
43- } ,
44- } ;
35+ framework : "mocha" ,
36+ mochaOpts : {
37+ ui : "bdd" ,
38+ timeout : 20000 ,
39+ } ,
40+ } ;
0 commit comments