Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100644 37 lines (28 sloc) 0.836 kb
0e85ca9 Julie Ralph chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr authored
1 exports.config = {
2 allScriptsTimeout: 11000,
3
4 specs: [
5 'build/docs/ptore2e/**/*.js',
6 'test/e2e/docsAppE2E.js'
7 ],
8
9 capabilities: {
10 'browserName': 'chrome'
11 },
12
13 baseUrl: 'http://localhost:8000/build/docs/',
14
15 framework: 'jasmine',
16
17 onPrepare: function() {
18 // Disable animations so e2e tests run more quickly
19 var disableNgAnimate = function() {
20 angular.module('disableNgAnimate', []).run(function($animate) {
21 $animate.enabled(false);
22 });
23 };
24
25 browser.addMockModule('disableNgAnimate', disableNgAnimate);
26
27 require('jasmine-reporters');
28 jasmine.getEnv().addReporter(
f4a121f Pete Bacon Darwin chore(protractor-jenkins-config): don't use `this` inside onPrepare
petebacondarwin authored
29 new jasmine.JUnitXmlReporter('test_out/e2e-' + exports.config.capabilities.browserName + '-', true, true));
0e85ca9 Julie Ralph chore(testing): run end to end tests on firefox and safari as well as ch...
juliemr authored
30 },
31
32 jasmineNodeOpts: {
33 defaultTimeoutInterval: 30000,
34 showColors: false
35 }
36 };
Something went wrong with that request. Please try again.