DEV: Fix invalid hbs syntax in tests (#27348)

Followup to 26198fb328

also removes superfluous whitespace
This commit is contained in:
Jarek Radosz 2024-06-05 14:08:15 +02:00 committed by GitHub
parent da162639fa
commit fb812a48ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 19 additions and 19 deletions

View File

@ -123,7 +123,7 @@ module("Integration | Component | FloatKit | d-tooltip", function (hooks) {
test("<:trigger>", async function (assert) {
await render(
hbs`<DTooltip @inline={{true}}><:trigger>label</:trigger></DTooltip />`
hbs`<DTooltip @inline={{true}}><:trigger>label</:trigger></DTooltip>`
);
assert.dom(".fk-d-tooltip__trigger").hasText("label");
@ -131,7 +131,7 @@ module("Integration | Component | FloatKit | d-tooltip", function (hooks) {
test("<:content>", async function (assert) {
await render(
hbs`<DTooltip @inline={{true}}><:content>content</:content></DTooltip />`
hbs`<DTooltip @inline={{true}}><:content>content</:content></DTooltip>`
);
await hover();