I’m writing tests for Ember for the first time.
I’ve got a search box:
<input id="searchInput" class="ember-view ember-text-field sg-input span4" placeholder="Search the database" type="text" name="searchInput">
I want to fill in that search box with “assignment”.
My fillin() code looks like:
fillIn('input#searchInput', 'assignment');
But that does not put ‘assignment’ into the search box.
How do I get it working? What other code can I provide?