aboutsummaryrefslogtreecommitdiffstats
path: root/protractor-jquery-conf.js
diff options
context:
space:
mode:
Diffstat (limited to 'protractor-jquery-conf.js')
-rw-r--r--protractor-jquery-conf.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/protractor-jquery-conf.js b/protractor-jquery-conf.js
deleted file mode 100644
index 6b93994b..00000000
--- a/protractor-jquery-conf.js
+++ /dev/null
@@ -1,32 +0,0 @@
-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
- }
-};