Skip to content

Instantly share code, notes, and snippets.

@kamal
Last active December 20, 2015 04:39
Show Gist options
  • Save kamal/6072267 to your computer and use it in GitHub Desktop.
Save kamal/6072267 to your computer and use it in GitHub Desktop.
Ember.Test.registerHelper('select', function(app, selector, context, label) {
if (typeof label === 'undefined') {
label = context;
context = null;
}
var $select = findWithAssert(selector, context);
var $option = findWithAssert('option:contains(' + label + ')', $select);
Ember.run(function(){
$select.val($option.prop('value')).change();
});
return wait();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment