mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 21:51:50 +02:00
36 lines
807 B
JavaScript
36 lines
807 B
JavaScript
'use strict'
|
|
|
|
exports.config = Object.assign({}, require('./hooks'), {
|
|
hostname: 'chromedriver',
|
|
path: '/',
|
|
capabilities: [
|
|
{
|
|
// Set maxInstances to 1 if screen recordings are enabled:
|
|
// maxInstances: 1,
|
|
browserName: 'chrome',
|
|
'goog:chromeOptions': {
|
|
// Disable headless mode if screen recordings are enabled:
|
|
args: ['--headless', '--window-size=1440,900']
|
|
}
|
|
}
|
|
],
|
|
logLevel: 'warn',
|
|
reporters: ['spec'],
|
|
framework: 'mocha',
|
|
mochaOpts: {
|
|
timeout: 60000
|
|
},
|
|
specs: ['test/specs/**/*.js'],
|
|
maximizeWindow: true,
|
|
screenshots: {
|
|
saveOnFail: true
|
|
},
|
|
videos: {
|
|
enabled: false,
|
|
resolution: '1440x900',
|
|
startDelay: 500,
|
|
stopDelay: 500
|
|
},
|
|
assetsDir: '/home/webdriver/assets/',
|
|
baseUrl: 'http://example'
|
|
})
|