Skip to content

Commit

Permalink
Replaced TestUtility innerText call with textContent (blackbaud#1422)
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbaud-StacyCarlos authored and Blackbaud-SteveBrush committed Jan 23, 2018
1 parent db5852d commit dceefd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/testing/matchers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ let skyMatchers: jasmine.CustomMatcherFactories = {
message: ''
};

let actualText = el.innerText;
let actualText = el.textContent;

if (trimWhitespace) {
actualText = actualText.trim();
Expand Down

0 comments on commit dceefd6

Please sign in to comment.