Skip to content

Commit

Permalink
lint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 18, 2021
1 parent 1e73f1e commit 8a5de6a
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions smoke-tests/ember-test-app/tests/integration/strict-mode-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ module('tests/integration/components/gjs', function (hooks) {

test('it works with ember helpers', async function (assert) {
await render(
precompileTemplate(`
precompileTemplate(
`
{{#let (service 'router') as |router|}}
{{router.currentRouteName}} hi
{{/let}}
`, {
strictMode: true,
scope: () => ({ service }),
})
`,
{
strictMode: true,
scope: () => ({ service }),
}
)
);

assert.dom().containsText('hi');
Expand Down

0 comments on commit 8a5de6a

Please sign in to comment.