17 lines
396 B
JavaScript
17 lines
396 B
JavaScript
exports.config = {
|
|
|
|
seleniumAddress: 'http://localhost:4444/wd/hub',
|
|
capabilities: { 'browserName': 'chrome' },
|
|
specs: ['features/*Feature.js'],
|
|
|
|
jasmineNodeOpts: {
|
|
showColors: true,
|
|
print: function() {}
|
|
},
|
|
|
|
onPrepare: function() {
|
|
var SpecReporter = require('jasmine-spec-reporter');
|
|
jasmine.getEnv().addReporter(new SpecReporter({displayStacktrace: 'all'}));
|
|
}
|
|
};
|