Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100644 28 lines (21 sloc) 0.681 kb
e645f7c Julie Ralph refactor(testing): split travis end to end tests into separate jobs for ...
juliemr authored
1 exports.config = {
2 allScriptsTimeout: 11000,
3
4 baseUrl: 'http://localhost:8000/build/docs/',
5
6 framework: 'jasmine',
7
8 onPrepare: function() {
9 // Disable animations so e2e tests run more quickly
10 var disableNgAnimate = function() {
11 angular.module('disableNgAnimate', []).run(function($animate) {
12 $animate.enabled(false);
13 });
14 };
15
16 browser.addMockModule('disableNgAnimate', disableNgAnimate);
39c82f3 Julie Ralph chore(travis): reorganize protractor configs to group by spec instead of...
juliemr authored
17
18 // Store the name of the browser that's currently being used.
19 browser.getCapabilities().then(function(caps) {
20 browser.params.browser = caps.get('browserName');
21 });
e645f7c Julie Ralph refactor(testing): split travis end to end tests into separate jobs for ...
juliemr authored
22 },
23
24 jasmineNodeOpts: {
25 defaultTimeoutInterval: 30000
26 }
27 };
Something went wrong with that request. Please try again.