/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ // Protractor configuration file, see link for more information // https://github.com/angular/protractor/blob/master/lib/config.ts exports.config = { specs: ['../built/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, baseUrl: 'http://localhost:9876/', framework: 'jasmine', useAllAngular2AppRoots: true };