Files
i399tester/conf.js
2017-05-03 11:55:39 +03:00

20 lines
394 B
JavaScript

exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub',
capabilities: {
'browserName': 'phantomjs',
'phantomjs.cli.args': ['--ignore-ssl-errors=true']
},
jasmineNodeOpts: {
showColors: true
},
onPrepare: function() {
jasmine.getEnv()
.addReporter(require('./spec/helpers/points-reporter').reporter);
}
};