Only commit raw text after OCR for now.
[redakcja.git] / src / fileupload / static / lib / jQuery-File-Upload-10.32.0 / wdio / conf / chrome.js
1 'use strict'
2
3 /* eslint-disable jsdoc/valid-types */
4 /** @type WebdriverIO.Config */
5 const config = {
6   hostname: 'chromedriver',
7   path: '/',
8   capabilities: [
9     {
10       // Set maxInstances to 1 if screen recordings are enabled:
11       // maxInstances: 1,
12       browserName: 'chrome',
13       'goog:chromeOptions': {
14         // Disable headless mode if screen recordings are enabled:
15         args: ['--headless', '--window-size=1440,900']
16       }
17     }
18   ],
19   logLevel: 'warn',
20   reporters: ['spec'],
21   framework: 'mocha',
22   mochaOpts: {
23     timeout: 60000
24   },
25   specs: ['test/specs/**/*.js'],
26   maximizeWindow: true,
27   screenshots: {
28     saveOnFail: true
29   },
30   videos: {
31     enabled: false,
32     resolution: '1440x900',
33     startDelay: 500,
34     stopDelay: 500
35   },
36   assetsDir: '/home/webdriver/assets/',
37   baseUrl: 'http://example'
38 }
39
40 exports.config = Object.assign({}, require('../hooks'), config)