Skip to content

Commit

Permalink
Merge pull request #3994 from jrjohnson/update-some-tests
Browse files Browse the repository at this point in the history
Update some tests
  • Loading branch information
thecoolestguy authored Aug 24, 2018
2 parents c19cdb0 + 1b69305 commit becfa13
Show file tree
Hide file tree
Showing 3 changed files with 468 additions and 484 deletions.
4 changes: 2 additions & 2 deletions app/templates/components/bulk-new-users.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<div class="item last">
<label>{{t "general.primarySchool"}}:</label>
{{#if (and (is-fulfilled schools) (is-fulfilled bestSelectedSchool))}}
<select onchange={{action "setSchool" value="target.value"}}>
<select onchange={{action "setSchool" value="target.value"}} data-test-schools>
{{#each (sort-by "title" (await schools)) as |school|}}
<option
value={{school.id}}
Expand All @@ -126,7 +126,7 @@
<div class="item last">
<label>{{t "general.primaryCohort"}}:</label>
{{#if (and loadCohorts.isIdle (is-fulfilled bestSelectedCohort))}}
<select onchange={{action "setPrimaryCohort" value="target.value"}}>
<select onchange={{action "setPrimaryCohort" value="target.value"}} data-test-cohorts>
{{#each (sort-by "title" cohorts) as |cohort|}}
<option
value={{cohort.id}}
Expand Down
Loading

0 comments on commit becfa13

Please sign in to comment.