All files / wdio-config/tests/__fixtures__ wdio.conf.multiremote.rdc.js

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31    1x   1x                                                    
import path from 'path'
 
const TEST_ROOT = path.join(__dirname, '..')
 
exports.config = {
    user: 'foobar',
    key: '50fa142c-3121-4gb0-9p07-8q326vvbq7b0',
    specs: [path.join(TEST_ROOT, '*.test.js')],
    exclude: [
        path.join(TEST_ROOT, '/detectBackend.test.js'),
        path.join(TEST_ROOT, '/validateConfig.test.js')
    ],
    region: 'eu',
    capabilities: [{
        myChromeBrowser: {
            capabilities: {
                browserName: 'chrome',
                testobject_api_key: '1',
            }
        }
    }],
    suites: {
        unit: [path.join(TEST_ROOT, 'configparser.test.js')],
        mobile: [path.join(TEST_ROOT, 'detectBackend.test.js')],
        functional: [
            path.join(TEST_ROOT, 'validateConfig.test.js'),
            path.join(TEST_ROOT, '..', 'src/index.js')
        ]
    }
}