Skip to content

Commit

Permalink
try to fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Aug 4, 2023
1 parent dfe972c commit f62eccd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/tests/acceptance/demos-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { click, currentRouteName, visit, fillIn } from '@ember/test-helpers';
import { click, currentRouteName, visit, fillIn, settled } from '@ember/test-helpers';

import { later } from '@ember/runloop';
import { module, test, skip } from 'qunit';
Expand Down Expand Up @@ -90,6 +90,7 @@ module('Acceptance: Demos', function (hooks) {
test('liquid if demo', async function (assert) {
await visit('/helpers/liquid-if');
assert.noTransitionsYet();
await settled();
assert
.dom('#liquid-box-demo input[type=checkbox]')
.exists({ count: 1 }, 'found checkbox');
Expand Down

0 comments on commit f62eccd

Please sign in to comment.