netstix/test/e2e/conf.js
2022-11-27 20:58:22 +08:00

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'}));
}
};