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. Please reload this page.
1 parent f33a10d commit 9387faeCopy full SHA for 9387fae
protractor-shared-conf.js
@@ -19,6 +19,13 @@ exports.config = {
19
20
browser.addMockModule('disableNgAnimate', disableNgAnimate);
21
22
+ browser.addMockModule('enable-binding-info', function() {
23
+ angular.module('enable-binding-info', [])
24
+ .config(['$compileProvider', function($compileProvider) {
25
+ $compileProvider.enableDebugInfo(true);
26
+ }]);
27
+ });
28
+
29
// Store the name of the browser that's currently being used.
30
browser.getCapabilities().then(function(caps) {
31
browser.params.browser = caps.get('browserName');
0 commit comments