/
githubmirror
/
quill
Обзор
Документация
Войти
/
githubmirror
/
quill
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.0.0-dev.0
_develop/wdio.config.js
34 строки
671 B
Jason Chen
linter fixes
06 ноя 2017, 10:17
06 ноя 2017, 10:17
176b66c
Код
Авторство
О чём код?
exports.config = { specs: ['./test/functional/epic.js'], exclude: [], reporters: ['spec'], maxInstances: 10, capabilities: [ { browserName: 'chrome', }, ], sync: true, logLevel: 'error', coloredLogs: true, baseUrl: `http://localhost:${process.env.npm_package_config_ports_proxy}`, waitforTimeout: 10000, connectionRetryTimeout: 90000, connectionRetryCount: 3, framework: 'jasmine', jasmineNodeOpts: { defaultTimeoutInterval: 10000, expectationResultHandler: passed => { if (passed) return; this.saveScreenshot( `./wd-${this.desiredCapabilities.browserName}-error.png`, ); }, }, };