Fix chai-jquery tests

This commit is contained in:
Theodore Brown
2013-08-25 19:57:49 -05:00
parent ee3a79f58f
commit 1cbc49538e
2 changed files with 42 additions and 1 deletions
+19 -1
View File
@@ -12,7 +12,25 @@ declare module chai {
(target: any): Expect;
}
interface Expect extends LanguageChains, NumericComparison, TypeComparison {
interface Assertions {
attr(name, value?);
css(name, value?);
data(name, value?);
class(className);
id(id);
html(html);
text(text);
value(value);
visible;
hidden;
selected;
checked;
disabled;
empty;
exist;
}
interface Expect extends LanguageChains, NumericComparison, TypeComparison, Assertions {
not: Expect;
deep: Deep;
a: TypeComparison;