diff --git a/packages/ember-testing/tests/helpers_test.js b/packages/ember-testing/tests/helpers_test.js index a36a199903c..67d752668bc 100644 --- a/packages/ember-testing/tests/helpers_test.js +++ b/packages/ember-testing/tests/helpers_test.js @@ -636,13 +636,11 @@ QUnit.test('`triggerEvent` can be used to trigger arbitrary events', function() }); }); -test('`fillIn` takes context into consideration', function() { +QUnit.test('`fillIn` takes context into consideration', function() { expect(2); var fillIn, find, visit, andThen, wait; - App.IndexView = EmberView.extend({ - template: compile('
{{input type="text" id="first" class="current"}}
{{input type="text" id="second" class="current"}}') - }); + setTemplate('index', compile('
')); run(App, App.advanceReadiness);