super-productivity/karma-e2e.conf.js
2016-12-30 17:57:06 +01:00

27 lines
681 B
JavaScript

// An example configuration file.
'use strict';
exports.config = {
// The address of a running selenium server.
seleniumAddress: 'http://localhost:4444/wd/hub',
// Spec patterns are relative to the current working directly when
// protractor is called.
specs: ['e2e-tests/**/*.js'],
// Options to be passed to Jasmine-node.
jasmineNodeOpts: {
showColors: true,
defaultTimeoutInterval: 30000,
isVerbose: true
},
onPrepare: function() {
browser.manage()
.window()
.setSize(1360, 768);
browser.manage()
.timeouts()
.setScriptTimeout(20000);
}
};