Skip to content

Commit

Permalink
fix: codemods
Browse files Browse the repository at this point in the history
  • Loading branch information
knownasilya committed Mar 19, 2019
1 parent 804ca53 commit 3e0b553
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/components/shadow-dom/component-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module('Integration | Component | shadow-dom', function(hooks) {

await render(hbs`{{shadow-dom}}`);

assert.equal(this.element.textContent.trim(), '');
assert.dom(this.element).hasText('');

// Template block usage:
await render(hbs`
Expand All @@ -21,6 +21,6 @@ module('Integration | Component | shadow-dom', function(hooks) {
{{/shadow-dom}}
`);

assert.equal(this.element.textContent.trim(), 'template block text');
assert.dom(this.element).hasText('template block text');
});
});

0 comments on commit 3e0b553

Please sign in to comment.