ember-cli-test-helpers
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -0,1 +1,11 @@ | ||
var isVisible = function(selector) { | ||
var element = find(selector); | ||
equal(element.hasClass("hidden"), false); | ||
}; | ||
var isHidden = function(selector) { | ||
var element = find(selector); | ||
equal(element.hasClass("hidden"), true); | ||
}; | ||
var isTextInput = function(selector) { | ||
@@ -2,0 +12,0 @@ var element = find(selector); |
{ | ||
"name": "ember-cli-test-helpers", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "A collection of test helpers for ember web applications", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9707
188