Skip to content

Commit

Permalink
chore: try more test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
knownasilya committed Sep 20, 2022
1 parent b142ff4 commit c8882bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/components/shadow-root/component-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ module('Integration | Component | shadow-root', function (hooks) {
} else {
console.log('>');
console.log(find('div').innerHTML);
console.log(find('div').shadowRoot);
console.log(find('div > div').innerHTML);
console.log(find('div > div').shadowRoot);
assert
.dom('.block', find('div').shadowRoot)
.dom('.block', find('div > div').shadowRoot)
.hasText('template block text', 'has text for > 3.24');
}
});
Expand Down

0 comments on commit c8882bd

Please sign in to comment.