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

Commit

Permalink
tests(driverprovider): update driver provider medium tests with new f…
Browse files Browse the repository at this point in the history
…ilenames
  • Loading branch information
juliemr committed Jun 4, 2014
1 parent 5bb2994 commit e4600af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/driverprovider_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var chromeConfig = {
browserName: 'chrome'
}
};
testDriverProvider(require('../lib/driverProviders/chrome.dp')(chromeConfig)).
testDriverProvider(require('../lib/driverProviders/chrome')(chromeConfig)).
then(function() {
console.log('chrome.dp working!');
}, function(err) {
Expand All @@ -57,7 +57,7 @@ var hostedConfig = {
browserName: 'firefox'
}
};
testDriverProvider(require('../lib/driverProviders/hosted.dp')(hostedConfig)).
testDriverProvider(require('../lib/driverProviders/hosted')(hostedConfig)).
then(function() {
console.log('hosted.dp working!');
}, function(err) {
Expand All @@ -70,7 +70,7 @@ var localConfig = {
browserName: 'chrome'
}
};
testDriverProvider(require('../lib/driverProviders/local.dp')(localConfig)).
testDriverProvider(require('../lib/driverProviders/local')(localConfig)).
then(function() {
console.log('local.dp working!');
}, function(err) {
Expand All @@ -85,7 +85,7 @@ if (argv.sauceUser && argv.sauceKey) {
browserName: 'chrome'
}
};
testDriverProvider(require('../lib/driverProviders/sauce.dp')(sauceConfig)).
testDriverProvider(require('../lib/driverProviders/sauce')(sauceConfig)).
then(function() {
console.log('sauce.dp working!');
}, function(err) {
Expand Down

0 comments on commit e4600af

Please sign in to comment.