|
2ed4ad5
juliemr authored
|
||
| 1 | exports.config = { | |
| 2 | allScriptsTimeout: 11000, | |
| 3 | ||
| 4 | specs: [ | |
|
e645f7c
juliemr authored
|
||
| 5 | 'build/docs/ptore2e/**/*jqlite_test.js', | |
|
039b990
jeffbcross authored
|
||
| 6 | 'test/e2e/docsAppE2E.js' | |
|
2ed4ad5
juliemr authored
|
||
| 7 | ], | |
| 8 | ||
| 9 | capabilities: { | |
|
e645f7c
juliemr authored
|
||
| 10 | 'browserName': 'chrome', | |
| 11 | 'name': 'Angular E2E: jqlite' | |
|
2ed4ad5
juliemr authored
|
||
| 12 | }, | |
| 13 | ||
| 14 | baseUrl: 'http://localhost:8000/build/docs/', | |
| 15 | ||
| 16 | framework: 'jasmine', | |
| 17 | ||
|
82213ef
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
juliemr authored
|
||
| 29 | jasmineNodeOpts: { | |
| 30 | defaultTimeoutInterval: 30000 | |
| 31 | } | |
| 32 | }; |