1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
|
// flow-typed signature: e8d50d58f9d96065d29f810f297eaeb2
// flow-typed version: 883196e42b/mocha_v4.x.x/flow_>=v0.28.x
declare interface $npm$mocha$SetupOptions {
slow?: number;
timeout?: number;
ui?: string;
globals?: Array<any>;
reporter?: any;
bail?: boolean;
ignoreLeaks?: boolean;
grep?: any;
}
declare type $npm$mocha$done = (error?: any) => any;
// declare interface $npm$mocha$SuiteCallbackContext {
// timeout(ms: number): void;
// retries(n: number): void;
// slow(ms: number): void;
// }
// declare interface $npm$mocha$TestCallbackContext {
// skip(): void;
// timeout(ms: number): void;
// retries(n: number): void;
// slow(ms: number): void;
// [index: string]: any;
// }
declare interface $npm$mocha$Suite {
parent: $npm$mocha$Suite;
title: string;
fullTitle(): string;
}
declare interface $npm$mocha$ContextDefinition {
(
description: string,
callback: () => /* this: $npm$mocha$SuiteCallbackContext */ void
): $npm$mocha$Suite;
only(
description: string,
callback: () => /* this: $npm$mocha$SuiteCallbackContext */ void
): $npm$mocha$Suite;
skip(
description: string,
callback: () => /* this: $npm$mocha$SuiteCallbackContext */ void
): void;
timeout(ms: number): void;
}
declare interface $npm$mocha$TestDefinition {
(
expectation: string,
callback?: (
/* this: $npm$mocha$TestCallbackContext, */ done: $npm$mocha$done
) => mixed
): $npm$mocha$Test;
only(
expectation: string,
callback?: (
/* this: $npm$mocha$TestCallbackContext, */ done: $npm$mocha$done
) => mixed
): $npm$mocha$Test;
skip(
expectation: string,
callback?: (
/* this: $npm$mocha$TestCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
timeout(ms: number): void;
state: "failed" | "passed";
}
declare interface $npm$mocha$Runner {}
declare class $npm$mocha$BaseReporter {
stats: {
suites: number,
tests: number,
passes: number,
pending: number,
failures: number
};
constructor(runner: $npm$mocha$Runner): $npm$mocha$BaseReporter;
}
declare class $npm$mocha$DocReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$DotReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$HTMLReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$HTMLCovReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$JSONReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$JSONCovReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$JSONStreamReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$LandingReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$ListReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$MarkdownReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$MinReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$NyanReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$ProgressReporter extends $npm$mocha$BaseReporter {
constructor(
runner: $npm$mocha$Runner,
options?: {
open?: string,
complete?: string,
incomplete?: string,
close?: string
}
): $npm$mocha$ProgressReporter;
}
declare class $npm$mocha$SpecReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$TAPReporter extends $npm$mocha$BaseReporter {}
declare class $npm$mocha$XUnitReporter extends $npm$mocha$BaseReporter {
constructor(
runner: $npm$mocha$Runner,
options?: any
): $npm$mocha$XUnitReporter;
}
declare class $npm$mocha$Mocha {
currentTest: $npm$mocha$TestDefinition;
constructor(options?: {
grep?: RegExp,
ui?: string,
reporter?: string,
timeout?: number,
reporterOptions?: any,
slow?: number,
bail?: boolean
}): $npm$mocha$Mocha;
setup(options: $npm$mocha$SetupOptions): this;
bail(value?: boolean): this;
addFile(file: string): this;
reporter(name: string): this;
reporter(reporter: (runner: $npm$mocha$Runner, options: any) => any): this;
ui(value: string): this;
grep(value: string): this;
grep(value: RegExp): this;
invert(): this;
ignoreLeaks(value: boolean): this;
checkLeaks(): this;
throwError(error: Error): void;
growl(): this;
globals(value: string): this;
globals(values: Array<string>): this;
useColors(value: boolean): this;
useInlineDiffs(value: boolean): this;
timeout(value: number): this;
slow(value: number): this;
enableTimeouts(value: boolean): this;
asyncOnly(value: boolean): this;
noHighlighting(value: boolean): this;
run(onComplete?: (failures: number) => void): $npm$mocha$Runner;
static reporters: {
Doc: $npm$mocha$DocReporter,
Dot: $npm$mocha$DotReporter,
HTML: $npm$mocha$HTMLReporter,
HTMLCov: $npm$mocha$HTMLCovReporter,
JSON: $npm$mocha$JSONReporter,
JSONCov: $npm$mocha$JSONCovReporter,
JSONStream: $npm$mocha$JSONStreamReporter,
Landing: $npm$mocha$LandingReporter,
List: $npm$mocha$ListReporter,
Markdown: $npm$mocha$MarkdownReporter,
Min: $npm$mocha$MinReporter,
Nyan: $npm$mocha$NyanReporter,
Progress: $npm$mocha$ProgressReporter
};
}
// declare interface $npm$mocha$HookCallbackContext {
// skip(): void;
// timeout(ms: number): void;
// [index: string]: any;
// }
declare interface $npm$mocha$Runnable {
title: string;
fn: Function;
async: boolean;
sync: boolean;
timedOut: boolean;
}
declare interface $npm$mocha$Test extends $npm$mocha$Runnable {
parent: $npm$mocha$Suite;
pending: boolean;
state: "failed" | "passed" | void;
fullTitle(): string;
}
// declare interface $npm$mocha$BeforeAndAfterContext extends $npm$mocha$HookCallbackContext {
// currentTest: $npm$mocha$Test;
// }
declare var mocha: $npm$mocha$Mocha;
declare var describe: $npm$mocha$ContextDefinition;
declare var xdescribe: $npm$mocha$ContextDefinition;
declare var context: $npm$mocha$ContextDefinition;
declare var suite: $npm$mocha$ContextDefinition;
declare var it: $npm$mocha$TestDefinition;
declare var xit: $npm$mocha$TestDefinition;
declare var test: $npm$mocha$TestDefinition;
declare var specify: $npm$mocha$TestDefinition;
declare function run(): void;
declare function setup(
callback: (
/* this: $npm$mocha$BeforeAndAfterContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function teardown(
callback: (
/* this: $npm$mocha$BeforeAndAfterContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function suiteSetup(
callback: (
/* this: $npm$mocha$HookCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function suiteTeardown(
callback: (
/* this: $npm$mocha$HookCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function before(
callback: (
/* this: $npm$mocha$HookCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function before(
description: string,
callback: (
/* this: $npm$mocha$HookCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function after(
callback: (
/* this: $npm$mocha$HookCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function after(
description: string,
callback: (
/* this: $npm$mocha$HookCallbackContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function beforeEach(
callback: (
/* this: $npm$mocha$BeforeAndAfterContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function beforeEach(
description: string,
callback: (
/* this: $npm$mocha$BeforeAndAfterContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function afterEach(
callback: (
/* this: $npm$mocha$BeforeAndAfterContext, */ done: $npm$mocha$done
) => mixed
): void;
declare function afterEach(
description: string,
callback: (
/* this: $npm$mocha$BeforeAndAfterContext, */ done: $npm$mocha$done
) => mixed
): void;
declare module "mocha" {
declare export var mocha: typeof mocha;
declare export var describe: typeof describe;
declare export var xdescribe: typeof xdescribe;
declare export var context: typeof context;
declare export var suite: typeof suite;
declare export var it: typeof it;
declare export var xit: typeof xit;
declare export var test: typeof test;
declare export var specify: typeof specify;
declare export var run: typeof run;
declare export var setup: typeof setup;
declare export var teardown: typeof teardown;
declare export var suiteSetup: typeof suiteSetup;
declare export var suiteTeardown: typeof suiteTeardown;
declare export var before: typeof before;
declare export var before: typeof before;
declare export var after: typeof after;
declare export var after: typeof after;
declare export var beforeEach: typeof beforeEach;
declare export var beforeEach: typeof beforeEach;
declare export var afterEach: typeof afterEach;
declare export var afterEach: typeof afterEach;
declare export default $npm$mocha$Mocha
}
|