Skip to content

Instantly share code, notes, and snippets.

@roydekleijn
Created October 20, 2017 12:00
Show Gist options
  • Save roydekleijn/b6b5db7e7c8053f4571299fe6bb85417 to your computer and use it in GitHub Desktop.
Save roydekleijn/b6b5db7e7c8053f4571299fe6bb85417 to your computer and use it in GitHub Desktop.
Basic jasmine config
exports.config = {
framework: 'jasmine2',
seleniumAddress: 'http://localhost:4444/wd/hub',
specs: './target/specs/**/*_spec.js',
baseUrl: 'http://demo.seleniuminaction.com',
getPageTimeout: 10000,
allScriptsTimeout: 10000,
capabilities: {
'browserName': 'chrome',
},
onPrepare: function () {
browser.ignoreSynchronization = true;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment