Created
December 15, 2015 08:26
-
-
Save pellekrogholt/7bb0fb14a7639a04a3ad to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// protractor configuration file for cucumber | |
exports.config = { | |
allScriptsTimeout: 11000, | |
specs: [ | |
'features/**/*.feature' | |
], | |
capabilities: { | |
'browserName': 'chrome' | |
}, | |
baseUrl: 'http://192.168.1.187:8000', | |
seleniumAddress: 'http://127.0.0.1:4444/wd/hub', | |
framework: 'cucumber', | |
cucumberOpts: { | |
require: 'features/', | |
format: "pretty" | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment