mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
update mocha definitions
This commit is contained in:
Vendored
+11
@@ -3,6 +3,17 @@
|
||||
// Definitions by: Kazi Manzur Rashid <https://github.com/kazimanzurrashid/>
|
||||
// DefinitelyTyped: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
interface Mocha {
|
||||
setup(options: MochaSetupOptions);
|
||||
run(callback: () => void);
|
||||
}
|
||||
|
||||
interface MochaSetupOptions {
|
||||
slow: number;
|
||||
timeout: number;
|
||||
ui: string;
|
||||
}
|
||||
|
||||
declare var describe : {
|
||||
(description: string, spec: () => void): void;
|
||||
only(description: string, spec: () => void): void;
|
||||
|
||||
Reference in New Issue
Block a user