This repository was archived by the owner on Jul 29, 2024. It is now read-only.
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ var chromeConfig = {
44
44
browserName : 'chrome'
45
45
}
46
46
} ;
47
- testDriverProvider ( require ( '../lib/driverProviders/chrome.dp ' ) ( chromeConfig ) ) .
47
+ testDriverProvider ( require ( '../lib/driverProviders/chrome' ) ( chromeConfig ) ) .
48
48
then ( function ( ) {
49
49
console . log ( 'chrome.dp working!' ) ;
50
50
} , function ( err ) {
@@ -57,7 +57,7 @@ var hostedConfig = {
57
57
browserName : 'firefox'
58
58
}
59
59
} ;
60
- testDriverProvider ( require ( '../lib/driverProviders/hosted.dp ' ) ( hostedConfig ) ) .
60
+ testDriverProvider ( require ( '../lib/driverProviders/hosted' ) ( hostedConfig ) ) .
61
61
then ( function ( ) {
62
62
console . log ( 'hosted.dp working!' ) ;
63
63
} , function ( err ) {
@@ -70,7 +70,7 @@ var localConfig = {
70
70
browserName : 'chrome'
71
71
}
72
72
} ;
73
- testDriverProvider ( require ( '../lib/driverProviders/local.dp ' ) ( localConfig ) ) .
73
+ testDriverProvider ( require ( '../lib/driverProviders/local' ) ( localConfig ) ) .
74
74
then ( function ( ) {
75
75
console . log ( 'local.dp working!' ) ;
76
76
} , function ( err ) {
@@ -85,7 +85,7 @@ if (argv.sauceUser && argv.sauceKey) {
85
85
browserName : 'chrome'
86
86
}
87
87
} ;
88
- testDriverProvider ( require ( '../lib/driverProviders/sauce.dp ' ) ( sauceConfig ) ) .
88
+ testDriverProvider ( require ( '../lib/driverProviders/sauce' ) ( sauceConfig ) ) .
89
89
then ( function ( ) {
90
90
console . log ( 'sauce.dp working!' ) ;
91
91
} , function ( err ) {
You can’t perform that action at this time.
0 commit comments