mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-01-09 16:45:51 +00:00
15 lines
286 B
JavaScript
15 lines
286 B
JavaScript
const config = require('./protractor.conf').config;
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
chromeOptions: {
|
|
binary: require('puppeteer').executablePath(),
|
|
args: [
|
|
'--headless',
|
|
'--no-sandbox',
|
|
'--disable-gpu'
|
|
]
|
|
}
|
|
};
|
|
|
|
exports.config = config; |