mirror of https://github.com/sipwise/ngcp-csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
693 B
31 lines
693 B
exports.config = {
|
|
specs: ['./specs/wdio-*.js'],
|
|
exclude: [],
|
|
maxInstances: 10,
|
|
capabilities: [
|
|
{
|
|
maxInstances: 5,
|
|
browserName: 'chrome',
|
|
}
|
|
],
|
|
sync: true,
|
|
logLevel: 'silent',
|
|
coloredLogs: true,
|
|
screenshotPath: './errorShots/',
|
|
baseUrl: 'http://localhost:1841',
|
|
waitforTimeout: 10000,
|
|
connectionRetryTimeout: 90000,
|
|
connectionRetryCount: 3,
|
|
framework: 'mocha',
|
|
reporters: [
|
|
'spec', 'junit'
|
|
],
|
|
reporterOptions: {
|
|
outputDir: './'
|
|
},
|
|
jasmineNodeOpts: {
|
|
defaultTimeoutInterval: 10000,
|
|
expectationResultHandler: function(passed, assertion) {}
|
|
}
|
|
}
|