bigbluebutton-Github/bigbluebutton-html5/tests/webdriverio/wdio.conf.js
Maxim Khlobystov 03373b5abe Make sure the acceptance tests that involve keyboard are not executed on Firefox
This commit prevents logging with Enter key from happening in Firefox tests. There's a well-known bug associated with browser.keys() on Firefox. We add an additional check to the Login test specs to prevent that from happening.
2017-06-05 23:42:33 +00:00

24 lines
442 B
JavaScript

exports.config = {
specs: ['tests/webdriverio/specs/**/*.spec.js'],
capabilities: [
{
browserName: 'chrome',
},
],
baseUrl: 'http://localhost:8080',
framework: 'jasmine',
reporters: ['spec', 'junit'],
reporterOptions: {
junit: {
outputDir: './tests/webdriverio/reports',
},
},
screenshotPath: 'screenshots',
suites: {
login: [
'tests/webdriverio/specs/login.spec.js',
],
},
};