Skip to content

Commit

Permalink
fix: hbs render format in component tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vscav committed Jul 22, 2024
1 parent 587b263 commit 2c99bcb
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ module('Integration | Component | amount-input', function (hooks) {
module('and the value is not a valid amount', function () {
test('calls update with an empty string value', async function (assert) {
await render<TestContext>(hbs`
<AmountInput
@value={{this.value}}
@update={{fn (mut this.value)}}
/>
`);
<AmountInput
@value={{this.value}}
@update={{fn (mut this.value)}}
/>
`);

await simulateUserPasteValue('input', 'foo');

Expand Down

0 comments on commit 2c99bcb

Please sign in to comment.