Skip to content

Commit 9387fae

Browse files
chore(protractor-shared-conf): add enableDebugInfo module
1 parent f33a10d commit 9387fae

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

protractor-shared-conf.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ exports.config = {
1919

2020
browser.addMockModule('disableNgAnimate', disableNgAnimate);
2121

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+
2229
// Store the name of the browser that's currently being used.
2330
browser.getCapabilities().then(function(caps) {
2431
browser.params.browser = caps.get('browserName');

0 commit comments

Comments
 (0)