mirror of https://github.com/Chocobozzz/PeerTube
29 lines
456 B
TypeScript
29 lines
456 B
TypeScript
import { config as mainConfig } from './wdio.main.conf'
|
|
|
|
const prefs = {
|
|
'intl.accept_languages': 'en'
|
|
}
|
|
|
|
module.exports = {
|
|
config: {
|
|
...mainConfig,
|
|
|
|
runner: 'local',
|
|
|
|
maxInstances: 1,
|
|
specFileRetries: 0,
|
|
|
|
capabilities: [
|
|
{
|
|
browserName: 'chrome',
|
|
acceptInsecureCerts: true,
|
|
'goog:chromeOptions': {
|
|
prefs
|
|
}
|
|
}
|
|
],
|
|
|
|
services: [ 'chromedriver' ]
|
|
} as WebdriverIO.Config
|
|
}
|