Skip to content

Commit

Permalink
Refs #11835
Browse files Browse the repository at this point in the history
Include required options for occurences of `Ember.warn` in
`packages/ember-testing`

(cherry picked from commit ef5c762)
  • Loading branch information
max authored and rwjblue committed Jul 24, 2015
1 parent 8764e14 commit ab51f45
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/ember-testing/lib/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ if (environment.hasDOM) {

// Try again to verify that the patch took effect or blow up.
testCheckboxClick(function() {
Ember.warn('clicked checkboxes should be checked! the jQuery patch didn\'t work', this.checked);
Ember.warn(
'clicked checkboxes should be checked! the jQuery patch didn\'t work',
this.checked,
{ id: 'ember-testing.test-checkbox-click' }
);
});
});
}

0 comments on commit ab51f45

Please sign in to comment.