21 lines
730 B
JavaScript
21 lines
730 B
JavaScript
// Protractor configuration file, see link for more information
|
|
// https://github.com/angular/protractor/blob/master/lib/config.ts
|
|
exports.config = {
|
|
specs: [
|
|
'../dist/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": 4201`
|
|
baseUrl: 'http://localhost:4201/',
|
|
framework: 'jasmine',
|
|
useAllAngular2AppRoots: true
|
|
};
|