@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
19 lines (17 loc) • 496 B
JavaScript
var ROOT = __dirname + '/../..'
exports.config = {
specs: [ROOT + '/test/spec/unit/*'],
exclude: [
ROOT + '/test/spec/unit/configparser.js',
ROOT + '/test/spec/functional/selectorExecute.js',
ROOT + '/test/spec/mobile/context.js'
],
capabilities: {
browserName: 'chrome'
},
suites: {
unit: [ROOT + '/test/spec/unit/*'],
mobile: [ROOT + '/test/spec/mobile/*'],
functional: [ROOT + '/test/spec/functional/*']
}
}