Interface it
interface it {
constructor: any;
ignore<T>(...args: ItArgs<T>): void;
only<T>(...args: ItArgs<T>): void;
skip<T>(...args: ItArgs<T>): void;
ignore<T>(...args: ItArgs<T>): void;
only<T>(...args: ItArgs<T>): void;
skip<T>(...args: ItArgs<T>): void;
<T>(...args: ItArgs<T>): void;
}
constructor: any;
ignore<T>(...args: ItArgs<T>): void;
only<T>(...args: ItArgs<T>): void;
skip<T>(...args: ItArgs<T>): void;
ignore<T>(...args: ItArgs<T>): void;
only<T>(...args: ItArgs<T>): void;
skip<T>(...args: ItArgs<T>): void;
<T>(...args: ItArgs<T>): void;
}
- it<T>(...args): void
Type Parameters
Returns void
Methods
ignore
- ignore<T>(...args): void
Registers an individual test case with ignore set to true.
Type Parameters
Returns void
only
- only<T>(...args): void
Registers an individual test case with only set to true.
Type Parameters
Returns void
skip
- skip<T>(...args): void
Registers an individual test case with ignore set to true. Alias of
.ignore().Type Parameters
Returns void
Staticignore
- ignore<T>(...args): void
Ignore this test case.
Type Parameters
Returns void
Staticonly
- only<T>(...args): void
Only execute this test case.
Type Parameters
Returns void
Staticskip
- skip<T>(...args): void
Skip this test case.
Type Parameters
Returns void
Registers an individual test case.