Support of Firefox in e2e tests

This commit is contained in:
Borys Levytskyi
2015-04-12 16:55:55 +03:00
parent cace2f6ebf
commit cf0ba78ee6
5 changed files with 17 additions and 8 deletions

14
tests/e2e.all.js Normal file
View File

@@ -0,0 +1,14 @@
exports.config = {
seleniumAddress: 'http://127.0.0.1:4444/wd/hub',
specs: [
'./e2e/cmdDriver.js',
'./e2e/spec.js'
],
multiCapabilities: [{
'browserName': 'chrome'
},{
'browserName': 'firefox'
}]
};