Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit e4600af

Browse files
committed
tests(driverprovider): update driver provider medium tests with new filenames
1 parent 5bb2994 commit e4600af

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: spec/driverprovider_test.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var chromeConfig = {
4444
browserName: 'chrome'
4545
}
4646
};
47-
testDriverProvider(require('../lib/driverProviders/chrome.dp')(chromeConfig)).
47+
testDriverProvider(require('../lib/driverProviders/chrome')(chromeConfig)).
4848
then(function() {
4949
console.log('chrome.dp working!');
5050
}, function(err) {
@@ -57,7 +57,7 @@ var hostedConfig = {
5757
browserName: 'firefox'
5858
}
5959
};
60-
testDriverProvider(require('../lib/driverProviders/hosted.dp')(hostedConfig)).
60+
testDriverProvider(require('../lib/driverProviders/hosted')(hostedConfig)).
6161
then(function() {
6262
console.log('hosted.dp working!');
6363
}, function(err) {
@@ -70,7 +70,7 @@ var localConfig = {
7070
browserName: 'chrome'
7171
}
7272
};
73-
testDriverProvider(require('../lib/driverProviders/local.dp')(localConfig)).
73+
testDriverProvider(require('../lib/driverProviders/local')(localConfig)).
7474
then(function() {
7575
console.log('local.dp working!');
7676
}, function(err) {
@@ -85,7 +85,7 @@ if (argv.sauceUser && argv.sauceKey) {
8585
browserName: 'chrome'
8686
}
8787
};
88-
testDriverProvider(require('../lib/driverProviders/sauce.dp')(sauceConfig)).
88+
testDriverProvider(require('../lib/driverProviders/sauce')(sauceConfig)).
8989
then(function() {
9090
console.log('sauce.dp working!');
9191
}, function(err) {

0 commit comments

Comments
 (0)