blob: 6b93994b7206969ba76857052d8cd3178af6cffb (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | exports.config = {
  allScriptsTimeout: 11000,
  specs: [
    'build/docs/ptore2e/**/*jquery_test.js',
    'test/e2e/docsAppE2E.js'
  ],
  capabilities: {
    'browserName': 'chrome',
    'name': 'Angular E2E: jquery'
  },
  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);
  },
  jasmineNodeOpts: {
    defaultTimeoutInterval: 30000
  }
};
 |