diff options
Diffstat (limited to 'protractor-shared-conf.js')
| -rw-r--r-- | protractor-shared-conf.js | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/protractor-shared-conf.js b/protractor-shared-conf.js new file mode 100644 index 00000000..147bb006 --- /dev/null +++ b/protractor-shared-conf.js @@ -0,0 +1,27 @@ +exports.config = { + allScriptsTimeout: 11000, + + baseUrl: 'http://localhost:8000/build/docs/', + + framework: 'jasmine', + + onPrepare: function() { + // Disable animations so e2e tests run more quickly + var disableNgAnimate = function() { + angular.module('disableNgAnimate', []).run(function($animate) { + $animate.enabled(false); + }); + }; + + browser.addMockModule('disableNgAnimate', disableNgAnimate); + + // Store the name of the browser that's currently being used. + browser.getCapabilities().then(function(caps) { + browser.params.browser = caps.get('browserName'); + }); + }, + + jasmineNodeOpts: { + defaultTimeoutInterval: 30000 + } +}; |
