mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-11 11:50:54 +08:00
Fix chai-jquery tests
This commit is contained in:
Vendored
+19
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user