/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
integration/ng_elements/e2e/protractor.config.js
26 строк
814 B
Joey Perrott
refactor: apply prettier formatting to integration (#54653)
02 апр 2024, 23:42
02 апр 2024, 23:42
894c1c5
Код
Авторство
О чём код?
// 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'], chromeDriver: process.env.CHROMEDRIVER_BIN, capabilities: { browserName: 'chrome', chromeOptions: { binary: process.env.CHROME_BIN, // 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": 4205` baseUrl: 'http://localhost:4205/', framework: 'jasmine', useAllAngular2AppRoots: true, };