mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00

- version updates, add package-lock to the angular test-app - add protractor ci config - install headless chrome dependencies per https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md#running-puppeteer-on-circleci
15 lines
366 B
JavaScript
15 lines
366 B
JavaScript
|
|
// Protractor CI configuration file, see link for more information
|
|
// https://angular.io/guide/testing#configure-cli-for-ci-testing-in-chrome
|
|
|
|
const config = require('./protractor.conf').config;
|
|
|
|
config.capabilities = {
|
|
browserName: 'chrome',
|
|
chromeOptions: {
|
|
args: ['--headless', '--no-sandbox', '--window-size=1920,1080']
|
|
}
|
|
};
|
|
|
|
exports.config = config;
|