blob: 360909b3350ef23f32d8acd563ba01392c20682d (
plain) (
tree)
|
|
'use strict'
exports.config = Object.assign({}, require('./chrome').config, {
// Docker for Mac host address:
hostname: 'host.docker.internal',
capabilities: [
{
// safaridriver supports no parallel sessions:
maxInstances: 1,
browserName: 'safari'
}
],
videos: {
enabled: true,
inputFormat: 'mjpeg',
startDelay: 500,
stopDelay: 500
},
assetsDir: process.env.MACOS_ASSETS_DIR
})
|