mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
27 lines
681 B
JavaScript
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);
|
|
}
|
|
};
|