2015-05-13 16:24:49 -04:00
|
|
|
/* exported exists, count, present, blank, containsInstance, not, visible, invisible */
|
2015-03-04 07:02:36 -05:00
|
|
|
|
2013-06-20 13:58:54 -04:00
|
|
|
function exists(selector) {
|
|
|
|
return !!count(selector);
|
|
|
|
}
|
|
|
|
|
|
|
|
function count(selector) {
|
|
|
|
return find(selector).length;
|
|
|
|
}
|
|
|
|
|
2013-06-20 17:20:08 -04:00
|
|
|
function containsInstance(collection, klass, text) {
|
|
|
|
ok(klass.detectInstance(_.first(collection)), text);
|
2014-01-23 14:31:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
function not(state, message) {
|
|
|
|
ok(!state, message);
|
|
|
|
}
|
2015-03-04 07:02:36 -05:00
|
|
|
|
|
|
|
function visible(selector) {
|
|
|
|
return find(selector + ":visible").length > 0;
|
|
|
|
}
|
|
|
|
|
2015-04-16 13:53:30 -04:00
|
|
|
Ember.Test.registerAsyncHelper('selectDropdown', function(app, selector, itemId) {
|
|
|
|
var $select2 = find(selector);
|
|
|
|
$select2.select2('val', itemId.toString());
|
|
|
|
$select2.trigger("change");
|
|
|
|
});
|
|
|
|
|
2015-03-04 07:02:36 -05:00
|
|
|
function invisible(selector) {
|
|
|
|
var $items = find(selector + ":visible");
|
|
|
|
return $items.length === 0 ||
|
|
|
|
$items.css("opacity") === "0" ||
|
|
|
|
$items.css("visibility") === "hidden";
|
|
|
|
}
|