Skip to content

HTTPS clone URL

Subversion checkout URL

You can clone with HTTPS or Subversion.

Download ZIP
Newer
Older
100644 33 lines (25 sloc) 0.676 kb
2ed4ad5 Julie Ralph feat(build): add a grunt test for running protractor tests extracted fro...
juliemr authored
1 exports.config = {
2 allScriptsTimeout: 11000,
3
4 specs: [
e645f7c Julie Ralph refactor(testing): split travis end to end tests into separate jobs for ...
juliemr authored
5 'build/docs/ptore2e/**/*jqlite_test.js',
039b990 Jeff Cross test(docs): add protractor tests for docs app
jeffbcross authored
6 'test/e2e/docsAppE2E.js'
2ed4ad5 Julie Ralph feat(build): add a grunt test for running protractor tests extracted fro...
juliemr authored
7 ],
8
9 capabilities: {
e645f7c Julie Ralph refactor(testing): split travis end to end tests into separate jobs for ...
juliemr authored
10 'browserName': 'chrome',
11 'name': 'Angular E2E: jqlite'
2ed4ad5 Julie Ralph feat(build): add a grunt test for running protractor tests extracted fro...
juliemr authored
12 },
13
14 baseUrl: 'http://localhost:8000/build/docs/',
15
16 framework: 'jasmine',
17
82213ef Julie Ralph test(doc:protractor): turn off animation for doc end to end tests to spe...
juliemr authored
18 onPrepare: function() {
19 // Disable animations so e2e tests run more quickly
20 var disableNgAnimate = function() {
21 angular.module('disableNgAnimate', []).run(function($animate) {
22 $animate.enabled(false);
23 });
24 };
25
26 browser.addMockModule('disableNgAnimate', disableNgAnimate);
27 },
28
2ed4ad5 Julie Ralph feat(build): add a grunt test for running protractor tests extracted fro...
juliemr authored
29 jasmineNodeOpts: {
30 defaultTimeoutInterval: 30000
31 }
32 };
Something went wrong with that request. Please try again.