File size: 353 Bytes
81d22d0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
exports.config = {
framework: 'jasmine',
seleniumAddress: 'http://127.0.0.1:4444/wd/hub',
chromeDriver: '/usr/local/share/chromedriver-linux64/chromedriver',
specs: ['spec.js'],
directConnect: true,
multiCapabilities: [{
browserName: 'chrome',
chromeOptions: {
args: ["--headless"]
}
}]
}; |