8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. 8000 Please reload this page.
1 parent ec59be6 commit 82213efCopy full SHA for 82213ef
protractor-conf.js
@@ -14,6 +14,17 @@ exports.config = {
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
28
jasmineNodeOpts: {
29
defaultTimeoutInterval: 30000
30
}
0 commit comments