mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
15 lines
407 B
JavaScript
15 lines
407 B
JavaScript
const config = require('./protractor.conf').config;
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
chromeOptions: {
|
|
args: ['--headless', '--no-sandbox', '--disable-gpu']
|
|
}
|
|
};
|
|
|
|
// don't use protractor's webdriver, as it may be incompatible with the installed chrome version
|
|
config.directConnect = false;
|
|
config.seleniumAddress = 'http://localhost:4444/wd/hub';
|
|
|
|
exports.config = config;
|