DEV: Fix incorrect hbs syntax in tests (#27345)

This commit is contained in:
Jarek Radosz 2024-06-05 13:28:22 +02:00 committed by GitHub
parent f2c4474c1e
commit 26198fb328
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,7 +127,7 @@ module("Integration | Component | FloatKit | d-menu", function (hooks) {
test("<:trigger>", async function (assert) {
await render(
hbs`<DMenu @inline={{true}}><:trigger>label</:trigger></DMenu />`
hbs`<DMenu @inline={{true}}><:trigger>label</:trigger></DMenu>`
);
assert.dom(".fk-d-menu__trigger").containsText("label");
@ -135,7 +135,7 @@ module("Integration | Component | FloatKit | d-menu", function (hooks) {
test("<:content>", async function (assert) {
await render(
hbs`<DMenu @inline={{true}}><:content>content</:content></DMenu />`
hbs`<DMenu @inline={{true}}><:content>content</:content></DMenu>`
);
await open();