angular-cn/integration/i18n/e2e/protractor.config.js

21 lines
731 B
JavaScript

// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts
exports.config = {
specs: [
'../built/e2e/*.e2e-spec.js'
],
capabilities: {
browserName: 'chrome',
chromeOptions: {
binary: require('puppeteer').executablePath(),
// See /integration/README.md#browser-tests for more info on these args
args: ['--no-sandbox', '--headless', '--disable-gpu', '--disable-dev-shm-usage', '--hide-scrollbars', '--mute-audio']
}
},
directConnect: true,
// Port comes from lite-server config `/e2e/browser.config.json` `"port": 4204`
baseUrl: 'http://localhost:4204/',
framework: 'jasmine',
useAllAngular2AppRoots: true
};