ava 0.16.0 → 0.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.js +238 -188
- package/cli.js +11 -174
- package/index.js +5 -98
- package/index.js.flow +218 -0
- package/lib/assert.js +3 -3
- package/lib/babel-config.js +11 -5
- package/lib/beautify-stack.js +23 -0
- package/lib/caching-precompiler.js +25 -29
- package/lib/cli.js +172 -0
- package/lib/colors.js +2 -0
- package/lib/concurrent.js +2 -3
- package/lib/fork.js +23 -15
- package/lib/logger.js +4 -5
- package/lib/main.js +89 -0
- package/lib/prefix-title.js +25 -0
- package/lib/process-adapter.js +107 -0
- package/lib/reporters/mini.js +32 -27
- package/lib/run-status.js +5 -25
- package/lib/sequence.js +2 -4
- package/lib/test-worker.js +8 -71
- package/lib/throws-helper.js +1 -1
- package/lib/watcher.js +2 -5
- package/package.json +27 -26
- package/profile.js +10 -9
- package/readme.md +15 -12
- package/types/generated.d.ts +994 -192
- package/types/make.js +41 -9
- package/lib/send.js +0 -16
package/types/generated.d.ts
CHANGED
|
@@ -120,42 +120,75 @@ export interface ContextualCallbackTestContext extends CallbackTestContext {
|
|
|
120
120
|
context: any;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
+
export interface Macro<T> {
|
|
124
|
+
(t: T, ...args: any[]): void;
|
|
125
|
+
title? (providedTitle: string, ...args: any[]): string;
|
|
126
|
+
}
|
|
127
|
+
export type Macros<T> = Macro<T> | Macro<T>[];
|
|
128
|
+
|
|
123
129
|
export function test(name: string, run: ContextualTest): void;
|
|
124
130
|
export function test(run: ContextualTest): void;
|
|
131
|
+
export function test(name: string, run: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
132
|
+
export function test(run: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
125
133
|
export namespace test {
|
|
126
134
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
127
135
|
export function serial(implementation: ContextualTest): void;
|
|
128
|
-
export function
|
|
129
|
-
export function
|
|
130
|
-
export function
|
|
131
|
-
export function
|
|
136
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
137
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
138
|
+
export function before(name: string, implementation: Test): void;
|
|
139
|
+
export function before(implementation: Test): void;
|
|
140
|
+
export function before(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
141
|
+
export function before(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
142
|
+
export function after(name: string, implementation: Test): void;
|
|
143
|
+
export function after(implementation: Test): void;
|
|
144
|
+
export function after(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
145
|
+
export function after(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
132
146
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
133
147
|
export function skip(implementation: ContextualTest): void;
|
|
148
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
149
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
134
150
|
export function todo(name: string, implementation: ContextualTest): void;
|
|
135
151
|
export function todo(implementation: ContextualTest): void;
|
|
152
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
153
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
136
154
|
export function failing(name: string, implementation: ContextualTest): void;
|
|
137
155
|
export function failing(implementation: ContextualTest): void;
|
|
156
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
157
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
138
158
|
export function only(name: string, implementation: ContextualTest): void;
|
|
139
159
|
export function only(implementation: ContextualTest): void;
|
|
140
|
-
export function
|
|
141
|
-
export function
|
|
142
|
-
export function
|
|
143
|
-
export function
|
|
160
|
+
export function only(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
161
|
+
export function only(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
162
|
+
export function beforeEach(name: string, implementation: ContextualTest): void;
|
|
163
|
+
export function beforeEach(implementation: ContextualTest): void;
|
|
164
|
+
export function beforeEach(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
165
|
+
export function beforeEach(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
166
|
+
export function afterEach(name: string, implementation: ContextualTest): void;
|
|
167
|
+
export function afterEach(implementation: ContextualTest): void;
|
|
168
|
+
export function afterEach(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
169
|
+
export function afterEach(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
144
170
|
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
145
171
|
export function cb(implementation: ContextualCallbackTest): void;
|
|
172
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
173
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
146
174
|
}
|
|
147
175
|
export namespace test.serial {
|
|
148
176
|
export const before: typeof test.before.serial;
|
|
149
177
|
export const after: typeof test.after.serial;
|
|
150
178
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
151
179
|
export function skip(implementation: ContextualTest): void;
|
|
180
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
181
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
152
182
|
export function todo(name: string, implementation: ContextualTest): void;
|
|
153
183
|
export function todo(implementation: ContextualTest): void;
|
|
184
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
185
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
154
186
|
export const failing: typeof test.failing.serial;
|
|
155
187
|
export const only: typeof test.only.serial;
|
|
156
188
|
export const beforeEach: typeof test.beforeEach.serial;
|
|
157
189
|
export const afterEach: typeof test.afterEach.serial;
|
|
158
190
|
export const cb: typeof test.cb.serial;
|
|
191
|
+
export const always: typeof test.always.serial;
|
|
159
192
|
}
|
|
160
193
|
export namespace test.serial.skip {
|
|
161
194
|
export const before: typeof test.before.serial.skip;
|
|
@@ -164,6 +197,7 @@ export namespace test.serial.skip {
|
|
|
164
197
|
export const beforeEach: typeof test.beforeEach.serial.skip;
|
|
165
198
|
export const afterEach: typeof test.afterEach.serial.skip;
|
|
166
199
|
export const cb: typeof test.cb.serial.skip;
|
|
200
|
+
export const always: typeof test.always.serial.skip;
|
|
167
201
|
}
|
|
168
202
|
export namespace test.serial.todo {
|
|
169
203
|
export const before: typeof test.before.serial.todo;
|
|
@@ -172,24 +206,39 @@ export namespace test.serial.todo {
|
|
|
172
206
|
export const beforeEach: typeof test.beforeEach.serial.todo;
|
|
173
207
|
export const afterEach: typeof test.afterEach.serial.todo;
|
|
174
208
|
export const cb: typeof test.cb.serial.todo;
|
|
209
|
+
export const always: typeof test.always.serial.todo;
|
|
175
210
|
}
|
|
176
211
|
export namespace test.before {
|
|
177
|
-
export function serial(name: string, implementation:
|
|
178
|
-
export function serial(implementation:
|
|
179
|
-
export function
|
|
180
|
-
export function
|
|
181
|
-
export function
|
|
182
|
-
export function
|
|
183
|
-
export function
|
|
184
|
-
export function
|
|
185
|
-
export function
|
|
186
|
-
export function
|
|
212
|
+
export function serial(name: string, implementation: Test): void;
|
|
213
|
+
export function serial(implementation: Test): void;
|
|
214
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
215
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
216
|
+
export function skip(name: string, implementation: Test): void;
|
|
217
|
+
export function skip(implementation: Test): void;
|
|
218
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
219
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
220
|
+
export function todo(name: string, implementation: Test): void;
|
|
221
|
+
export function todo(implementation: Test): void;
|
|
222
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
223
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
224
|
+
export function failing(name: string, implementation: Test): void;
|
|
225
|
+
export function failing(implementation: Test): void;
|
|
226
|
+
export function failing(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
227
|
+
export function failing(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
228
|
+
export function cb(name: string, implementation: CallbackTest): void;
|
|
229
|
+
export function cb(implementation: CallbackTest): void;
|
|
230
|
+
export function cb(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
231
|
+
export function cb(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
187
232
|
}
|
|
188
233
|
export namespace test.before.serial {
|
|
189
|
-
export function skip(name: string, implementation:
|
|
190
|
-
export function skip(implementation:
|
|
191
|
-
export function
|
|
192
|
-
export function
|
|
234
|
+
export function skip(name: string, implementation: Test): void;
|
|
235
|
+
export function skip(implementation: Test): void;
|
|
236
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
237
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
238
|
+
export function todo(name: string, implementation: Test): void;
|
|
239
|
+
export function todo(implementation: Test): void;
|
|
240
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
241
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
193
242
|
export const failing: typeof test.before.failing.serial;
|
|
194
243
|
export const cb: typeof test.before.cb.serial;
|
|
195
244
|
}
|
|
@@ -212,19 +261,29 @@ export namespace test.before.todo {
|
|
|
212
261
|
export const cb: typeof test.before.cb.todo;
|
|
213
262
|
}
|
|
214
263
|
export namespace test.before.failing {
|
|
215
|
-
export function serial(name: string, implementation:
|
|
216
|
-
export function serial(implementation:
|
|
217
|
-
export function
|
|
218
|
-
export function
|
|
219
|
-
export function
|
|
220
|
-
export function
|
|
264
|
+
export function serial(name: string, implementation: Test): void;
|
|
265
|
+
export function serial(implementation: Test): void;
|
|
266
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
267
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
268
|
+
export function skip(name: string, implementation: Test): void;
|
|
269
|
+
export function skip(implementation: Test): void;
|
|
270
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
271
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
272
|
+
export function todo(name: string, implementation: Test): void;
|
|
273
|
+
export function todo(implementation: Test): void;
|
|
274
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
275
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
221
276
|
export const cb: typeof test.before.cb.failing;
|
|
222
277
|
}
|
|
223
278
|
export namespace test.before.failing.serial {
|
|
224
|
-
export function skip(name: string, implementation:
|
|
225
|
-
export function skip(implementation:
|
|
226
|
-
export function
|
|
227
|
-
export function
|
|
279
|
+
export function skip(name: string, implementation: Test): void;
|
|
280
|
+
export function skip(implementation: Test): void;
|
|
281
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
282
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
283
|
+
export function todo(name: string, implementation: Test): void;
|
|
284
|
+
export function todo(implementation: Test): void;
|
|
285
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
286
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
228
287
|
export const cb: typeof test.before.cb.failing.serial;
|
|
229
288
|
}
|
|
230
289
|
export namespace test.before.failing.serial.skip {
|
|
@@ -242,20 +301,32 @@ export namespace test.before.failing.todo {
|
|
|
242
301
|
export const cb: typeof test.before.cb.failing.todo;
|
|
243
302
|
}
|
|
244
303
|
export namespace test.before.cb {
|
|
245
|
-
export function serial(name: string, implementation:
|
|
246
|
-
export function serial(implementation:
|
|
247
|
-
export function
|
|
248
|
-
export function
|
|
249
|
-
export function
|
|
250
|
-
export function
|
|
251
|
-
export function
|
|
252
|
-
export function
|
|
304
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
305
|
+
export function serial(implementation: CallbackTest): void;
|
|
306
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
307
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
308
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
309
|
+
export function skip(implementation: CallbackTest): void;
|
|
310
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
311
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
312
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
313
|
+
export function todo(implementation: CallbackTest): void;
|
|
314
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
315
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
316
|
+
export function failing(name: string, implementation: CallbackTest): void;
|
|
317
|
+
export function failing(implementation: CallbackTest): void;
|
|
318
|
+
export function failing(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
319
|
+
export function failing(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
253
320
|
}
|
|
254
321
|
export namespace test.before.cb.serial {
|
|
255
|
-
export function skip(name: string, implementation:
|
|
256
|
-
export function skip(implementation:
|
|
257
|
-
export function
|
|
258
|
-
export function
|
|
322
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
323
|
+
export function skip(implementation: CallbackTest): void;
|
|
324
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
325
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
326
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
327
|
+
export function todo(implementation: CallbackTest): void;
|
|
328
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
329
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
259
330
|
export const failing: typeof test.before.cb.failing.serial;
|
|
260
331
|
}
|
|
261
332
|
export namespace test.before.cb.serial.skip {
|
|
@@ -273,18 +344,28 @@ export namespace test.before.cb.todo {
|
|
|
273
344
|
export const failing: typeof test.before.cb.failing.todo;
|
|
274
345
|
}
|
|
275
346
|
export namespace test.before.cb.failing {
|
|
276
|
-
export function serial(name: string, implementation:
|
|
277
|
-
export function serial(implementation:
|
|
278
|
-
export function
|
|
279
|
-
export function
|
|
280
|
-
export function
|
|
281
|
-
export function
|
|
347
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
348
|
+
export function serial(implementation: CallbackTest): void;
|
|
349
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
350
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
351
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
352
|
+
export function skip(implementation: CallbackTest): void;
|
|
353
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
354
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
355
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
356
|
+
export function todo(implementation: CallbackTest): void;
|
|
357
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
358
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
282
359
|
}
|
|
283
360
|
export namespace test.before.cb.failing.serial {
|
|
284
|
-
export function skip(name: string, implementation:
|
|
285
|
-
export function skip(implementation:
|
|
286
|
-
export function
|
|
287
|
-
export function
|
|
361
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
362
|
+
export function skip(implementation: CallbackTest): void;
|
|
363
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
364
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
365
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
366
|
+
export function todo(implementation: CallbackTest): void;
|
|
367
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
368
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
288
369
|
}
|
|
289
370
|
export namespace test.before.cb.failing.skip {
|
|
290
371
|
export const serial: typeof test.before.cb.failing.serial.skip;
|
|
@@ -293,123 +374,365 @@ export namespace test.before.cb.failing.todo {
|
|
|
293
374
|
export const serial: typeof test.before.cb.failing.serial.todo;
|
|
294
375
|
}
|
|
295
376
|
export namespace test.after {
|
|
296
|
-
export function serial(name: string, implementation:
|
|
297
|
-
export function serial(implementation:
|
|
298
|
-
export function
|
|
299
|
-
export function
|
|
300
|
-
export function
|
|
301
|
-
export function
|
|
302
|
-
export function
|
|
303
|
-
export function
|
|
304
|
-
export function
|
|
305
|
-
export function
|
|
377
|
+
export function serial(name: string, implementation: Test): void;
|
|
378
|
+
export function serial(implementation: Test): void;
|
|
379
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
380
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
381
|
+
export function skip(name: string, implementation: Test): void;
|
|
382
|
+
export function skip(implementation: Test): void;
|
|
383
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
384
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
385
|
+
export function todo(name: string, implementation: Test): void;
|
|
386
|
+
export function todo(implementation: Test): void;
|
|
387
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
388
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
389
|
+
export function failing(name: string, implementation: Test): void;
|
|
390
|
+
export function failing(implementation: Test): void;
|
|
391
|
+
export function failing(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
392
|
+
export function failing(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
393
|
+
export function cb(name: string, implementation: CallbackTest): void;
|
|
394
|
+
export function cb(implementation: CallbackTest): void;
|
|
395
|
+
export function cb(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
396
|
+
export function cb(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
397
|
+
export function always(name: string, implementation: Test): void;
|
|
398
|
+
export function always(implementation: Test): void;
|
|
399
|
+
export function always(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
400
|
+
export function always(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
306
401
|
}
|
|
307
402
|
export namespace test.after.serial {
|
|
308
|
-
export function skip(name: string, implementation:
|
|
309
|
-
export function skip(implementation:
|
|
310
|
-
export function
|
|
311
|
-
export function
|
|
403
|
+
export function skip(name: string, implementation: Test): void;
|
|
404
|
+
export function skip(implementation: Test): void;
|
|
405
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
406
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
407
|
+
export function todo(name: string, implementation: Test): void;
|
|
408
|
+
export function todo(implementation: Test): void;
|
|
409
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
410
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
312
411
|
export const failing: typeof test.after.failing.serial;
|
|
313
412
|
export const cb: typeof test.after.cb.serial;
|
|
413
|
+
export const always: typeof test.after.always.serial;
|
|
314
414
|
}
|
|
315
415
|
export namespace test.after.serial.skip {
|
|
316
416
|
export const failing: typeof test.after.failing.serial.skip;
|
|
317
417
|
export const cb: typeof test.after.cb.serial.skip;
|
|
418
|
+
export const always: typeof test.after.always.serial.skip;
|
|
318
419
|
}
|
|
319
420
|
export namespace test.after.serial.todo {
|
|
320
421
|
export const failing: typeof test.after.failing.serial.todo;
|
|
321
422
|
export const cb: typeof test.after.cb.serial.todo;
|
|
423
|
+
export const always: typeof test.after.always.serial.todo;
|
|
322
424
|
}
|
|
323
425
|
export namespace test.after.skip {
|
|
324
426
|
export const serial: typeof test.after.serial.skip;
|
|
325
427
|
export const failing: typeof test.after.failing.skip;
|
|
326
428
|
export const cb: typeof test.after.cb.skip;
|
|
429
|
+
export const always: typeof test.after.always.skip;
|
|
327
430
|
}
|
|
328
431
|
export namespace test.after.todo {
|
|
329
432
|
export const serial: typeof test.after.serial.todo;
|
|
330
433
|
export const failing: typeof test.after.failing.todo;
|
|
331
434
|
export const cb: typeof test.after.cb.todo;
|
|
435
|
+
export const always: typeof test.after.always.todo;
|
|
332
436
|
}
|
|
333
437
|
export namespace test.after.failing {
|
|
334
|
-
export function serial(name: string, implementation:
|
|
335
|
-
export function serial(implementation:
|
|
336
|
-
export function
|
|
337
|
-
export function
|
|
338
|
-
export function
|
|
339
|
-
export function
|
|
438
|
+
export function serial(name: string, implementation: Test): void;
|
|
439
|
+
export function serial(implementation: Test): void;
|
|
440
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
441
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
442
|
+
export function skip(name: string, implementation: Test): void;
|
|
443
|
+
export function skip(implementation: Test): void;
|
|
444
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
445
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
446
|
+
export function todo(name: string, implementation: Test): void;
|
|
447
|
+
export function todo(implementation: Test): void;
|
|
448
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
449
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
340
450
|
export const cb: typeof test.after.cb.failing;
|
|
451
|
+
export const always: typeof test.after.always.failing;
|
|
341
452
|
}
|
|
342
453
|
export namespace test.after.failing.serial {
|
|
343
|
-
export function skip(name: string, implementation:
|
|
344
|
-
export function skip(implementation:
|
|
345
|
-
export function
|
|
346
|
-
export function
|
|
454
|
+
export function skip(name: string, implementation: Test): void;
|
|
455
|
+
export function skip(implementation: Test): void;
|
|
456
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
457
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
458
|
+
export function todo(name: string, implementation: Test): void;
|
|
459
|
+
export function todo(implementation: Test): void;
|
|
460
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
461
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
347
462
|
export const cb: typeof test.after.cb.failing.serial;
|
|
463
|
+
export const always: typeof test.after.always.failing.serial;
|
|
348
464
|
}
|
|
349
465
|
export namespace test.after.failing.serial.skip {
|
|
350
466
|
export const cb: typeof test.after.cb.failing.serial.skip;
|
|
467
|
+
export const always: typeof test.after.always.failing.serial.skip;
|
|
351
468
|
}
|
|
352
469
|
export namespace test.after.failing.serial.todo {
|
|
353
470
|
export const cb: typeof test.after.cb.failing.serial.todo;
|
|
471
|
+
export const always: typeof test.after.always.failing.serial.todo;
|
|
354
472
|
}
|
|
355
473
|
export namespace test.after.failing.skip {
|
|
356
474
|
export const serial: typeof test.after.failing.serial.skip;
|
|
357
475
|
export const cb: typeof test.after.cb.failing.skip;
|
|
476
|
+
export const always: typeof test.after.always.failing.skip;
|
|
358
477
|
}
|
|
359
478
|
export namespace test.after.failing.todo {
|
|
360
479
|
export const serial: typeof test.after.failing.serial.todo;
|
|
361
480
|
export const cb: typeof test.after.cb.failing.todo;
|
|
481
|
+
export const always: typeof test.after.always.failing.todo;
|
|
362
482
|
}
|
|
363
483
|
export namespace test.after.cb {
|
|
364
|
-
export function serial(name: string, implementation:
|
|
365
|
-
export function serial(implementation:
|
|
366
|
-
export function
|
|
367
|
-
export function
|
|
368
|
-
export function
|
|
369
|
-
export function
|
|
370
|
-
export function
|
|
371
|
-
export function
|
|
484
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
485
|
+
export function serial(implementation: CallbackTest): void;
|
|
486
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
487
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
488
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
489
|
+
export function skip(implementation: CallbackTest): void;
|
|
490
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
491
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
492
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
493
|
+
export function todo(implementation: CallbackTest): void;
|
|
494
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
495
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
496
|
+
export function failing(name: string, implementation: CallbackTest): void;
|
|
497
|
+
export function failing(implementation: CallbackTest): void;
|
|
498
|
+
export function failing(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
499
|
+
export function failing(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
500
|
+
export const always: typeof test.after.always.cb;
|
|
372
501
|
}
|
|
373
502
|
export namespace test.after.cb.serial {
|
|
374
|
-
export function skip(name: string, implementation:
|
|
375
|
-
export function skip(implementation:
|
|
376
|
-
export function
|
|
377
|
-
export function
|
|
503
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
504
|
+
export function skip(implementation: CallbackTest): void;
|
|
505
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
506
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
507
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
508
|
+
export function todo(implementation: CallbackTest): void;
|
|
509
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
510
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
378
511
|
export const failing: typeof test.after.cb.failing.serial;
|
|
512
|
+
export const always: typeof test.after.always.cb.serial;
|
|
379
513
|
}
|
|
380
514
|
export namespace test.after.cb.serial.skip {
|
|
381
515
|
export const failing: typeof test.after.cb.failing.serial.skip;
|
|
516
|
+
export const always: typeof test.after.always.cb.serial.skip;
|
|
382
517
|
}
|
|
383
518
|
export namespace test.after.cb.serial.todo {
|
|
384
519
|
export const failing: typeof test.after.cb.failing.serial.todo;
|
|
520
|
+
export const always: typeof test.after.always.cb.serial.todo;
|
|
385
521
|
}
|
|
386
522
|
export namespace test.after.cb.skip {
|
|
387
523
|
export const serial: typeof test.after.cb.serial.skip;
|
|
388
524
|
export const failing: typeof test.after.cb.failing.skip;
|
|
525
|
+
export const always: typeof test.after.always.cb.skip;
|
|
389
526
|
}
|
|
390
527
|
export namespace test.after.cb.todo {
|
|
391
528
|
export const serial: typeof test.after.cb.serial.todo;
|
|
392
529
|
export const failing: typeof test.after.cb.failing.todo;
|
|
530
|
+
export const always: typeof test.after.always.cb.todo;
|
|
393
531
|
}
|
|
394
532
|
export namespace test.after.cb.failing {
|
|
395
|
-
export function serial(name: string, implementation:
|
|
396
|
-
export function serial(implementation:
|
|
397
|
-
export function
|
|
398
|
-
export function
|
|
399
|
-
export function
|
|
400
|
-
export function
|
|
533
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
534
|
+
export function serial(implementation: CallbackTest): void;
|
|
535
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
536
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
537
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
538
|
+
export function skip(implementation: CallbackTest): void;
|
|
539
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
540
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
541
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
542
|
+
export function todo(implementation: CallbackTest): void;
|
|
543
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
544
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
545
|
+
export const always: typeof test.after.always.cb.failing;
|
|
401
546
|
}
|
|
402
547
|
export namespace test.after.cb.failing.serial {
|
|
403
|
-
export function skip(name: string, implementation:
|
|
404
|
-
export function skip(implementation:
|
|
405
|
-
export function
|
|
406
|
-
export function
|
|
548
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
549
|
+
export function skip(implementation: CallbackTest): void;
|
|
550
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
551
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
552
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
553
|
+
export function todo(implementation: CallbackTest): void;
|
|
554
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
555
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
556
|
+
export const always: typeof test.after.always.cb.failing.serial;
|
|
557
|
+
}
|
|
558
|
+
export namespace test.after.cb.failing.serial.skip {
|
|
559
|
+
export const always: typeof test.after.always.cb.failing.serial.skip;
|
|
560
|
+
}
|
|
561
|
+
export namespace test.after.cb.failing.serial.todo {
|
|
562
|
+
export const always: typeof test.after.always.cb.failing.serial.todo;
|
|
407
563
|
}
|
|
408
564
|
export namespace test.after.cb.failing.skip {
|
|
409
565
|
export const serial: typeof test.after.cb.failing.serial.skip;
|
|
566
|
+
export const always: typeof test.after.always.cb.failing.skip;
|
|
410
567
|
}
|
|
411
568
|
export namespace test.after.cb.failing.todo {
|
|
412
569
|
export const serial: typeof test.after.cb.failing.serial.todo;
|
|
570
|
+
export const always: typeof test.after.always.cb.failing.todo;
|
|
571
|
+
}
|
|
572
|
+
export namespace test.after.always {
|
|
573
|
+
export function serial(name: string, implementation: Test): void;
|
|
574
|
+
export function serial(implementation: Test): void;
|
|
575
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
576
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
577
|
+
export function skip(name: string, implementation: Test): void;
|
|
578
|
+
export function skip(implementation: Test): void;
|
|
579
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
580
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
581
|
+
export function todo(name: string, implementation: Test): void;
|
|
582
|
+
export function todo(implementation: Test): void;
|
|
583
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
584
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
585
|
+
export function failing(name: string, implementation: Test): void;
|
|
586
|
+
export function failing(implementation: Test): void;
|
|
587
|
+
export function failing(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
588
|
+
export function failing(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
589
|
+
export function cb(name: string, implementation: CallbackTest): void;
|
|
590
|
+
export function cb(implementation: CallbackTest): void;
|
|
591
|
+
export function cb(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
592
|
+
export function cb(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
593
|
+
}
|
|
594
|
+
export namespace test.after.always.serial {
|
|
595
|
+
export function skip(name: string, implementation: Test): void;
|
|
596
|
+
export function skip(implementation: Test): void;
|
|
597
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
598
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
599
|
+
export function todo(name: string, implementation: Test): void;
|
|
600
|
+
export function todo(implementation: Test): void;
|
|
601
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
602
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
603
|
+
export const failing: typeof test.after.always.failing.serial;
|
|
604
|
+
export const cb: typeof test.after.always.cb.serial;
|
|
605
|
+
}
|
|
606
|
+
export namespace test.after.always.serial.skip {
|
|
607
|
+
export const failing: typeof test.after.always.failing.serial.skip;
|
|
608
|
+
export const cb: typeof test.after.always.cb.serial.skip;
|
|
609
|
+
}
|
|
610
|
+
export namespace test.after.always.serial.todo {
|
|
611
|
+
export const failing: typeof test.after.always.failing.serial.todo;
|
|
612
|
+
export const cb: typeof test.after.always.cb.serial.todo;
|
|
613
|
+
}
|
|
614
|
+
export namespace test.after.always.skip {
|
|
615
|
+
export const serial: typeof test.after.always.serial.skip;
|
|
616
|
+
export const failing: typeof test.after.always.failing.skip;
|
|
617
|
+
export const cb: typeof test.after.always.cb.skip;
|
|
618
|
+
}
|
|
619
|
+
export namespace test.after.always.todo {
|
|
620
|
+
export const serial: typeof test.after.always.serial.todo;
|
|
621
|
+
export const failing: typeof test.after.always.failing.todo;
|
|
622
|
+
export const cb: typeof test.after.always.cb.todo;
|
|
623
|
+
}
|
|
624
|
+
export namespace test.after.always.failing {
|
|
625
|
+
export function serial(name: string, implementation: Test): void;
|
|
626
|
+
export function serial(implementation: Test): void;
|
|
627
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
628
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
629
|
+
export function skip(name: string, implementation: Test): void;
|
|
630
|
+
export function skip(implementation: Test): void;
|
|
631
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
632
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
633
|
+
export function todo(name: string, implementation: Test): void;
|
|
634
|
+
export function todo(implementation: Test): void;
|
|
635
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
636
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
637
|
+
export const cb: typeof test.after.always.cb.failing;
|
|
638
|
+
}
|
|
639
|
+
export namespace test.after.always.failing.serial {
|
|
640
|
+
export function skip(name: string, implementation: Test): void;
|
|
641
|
+
export function skip(implementation: Test): void;
|
|
642
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
643
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
644
|
+
export function todo(name: string, implementation: Test): void;
|
|
645
|
+
export function todo(implementation: Test): void;
|
|
646
|
+
export function todo(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
647
|
+
export function todo(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
648
|
+
export const cb: typeof test.after.always.cb.failing.serial;
|
|
649
|
+
}
|
|
650
|
+
export namespace test.after.always.failing.serial.skip {
|
|
651
|
+
export const cb: typeof test.after.always.cb.failing.serial.skip;
|
|
652
|
+
}
|
|
653
|
+
export namespace test.after.always.failing.serial.todo {
|
|
654
|
+
export const cb: typeof test.after.always.cb.failing.serial.todo;
|
|
655
|
+
}
|
|
656
|
+
export namespace test.after.always.failing.skip {
|
|
657
|
+
export const serial: typeof test.after.always.failing.serial.skip;
|
|
658
|
+
export const cb: typeof test.after.always.cb.failing.skip;
|
|
659
|
+
}
|
|
660
|
+
export namespace test.after.always.failing.todo {
|
|
661
|
+
export const serial: typeof test.after.always.failing.serial.todo;
|
|
662
|
+
export const cb: typeof test.after.always.cb.failing.todo;
|
|
663
|
+
}
|
|
664
|
+
export namespace test.after.always.cb {
|
|
665
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
666
|
+
export function serial(implementation: CallbackTest): void;
|
|
667
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
668
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
669
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
670
|
+
export function skip(implementation: CallbackTest): void;
|
|
671
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
672
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
673
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
674
|
+
export function todo(implementation: CallbackTest): void;
|
|
675
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
676
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
677
|
+
export function failing(name: string, implementation: CallbackTest): void;
|
|
678
|
+
export function failing(implementation: CallbackTest): void;
|
|
679
|
+
export function failing(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
680
|
+
export function failing(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
681
|
+
}
|
|
682
|
+
export namespace test.after.always.cb.serial {
|
|
683
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
684
|
+
export function skip(implementation: CallbackTest): void;
|
|
685
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
686
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
687
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
688
|
+
export function todo(implementation: CallbackTest): void;
|
|
689
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
690
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
691
|
+
export const failing: typeof test.after.always.cb.failing.serial;
|
|
692
|
+
}
|
|
693
|
+
export namespace test.after.always.cb.serial.skip {
|
|
694
|
+
export const failing: typeof test.after.always.cb.failing.serial.skip;
|
|
695
|
+
}
|
|
696
|
+
export namespace test.after.always.cb.serial.todo {
|
|
697
|
+
export const failing: typeof test.after.always.cb.failing.serial.todo;
|
|
698
|
+
}
|
|
699
|
+
export namespace test.after.always.cb.skip {
|
|
700
|
+
export const serial: typeof test.after.always.cb.serial.skip;
|
|
701
|
+
export const failing: typeof test.after.always.cb.failing.skip;
|
|
702
|
+
}
|
|
703
|
+
export namespace test.after.always.cb.todo {
|
|
704
|
+
export const serial: typeof test.after.always.cb.serial.todo;
|
|
705
|
+
export const failing: typeof test.after.always.cb.failing.todo;
|
|
706
|
+
}
|
|
707
|
+
export namespace test.after.always.cb.failing {
|
|
708
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
709
|
+
export function serial(implementation: CallbackTest): void;
|
|
710
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
711
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
712
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
713
|
+
export function skip(implementation: CallbackTest): void;
|
|
714
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
715
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
716
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
717
|
+
export function todo(implementation: CallbackTest): void;
|
|
718
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
719
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
720
|
+
}
|
|
721
|
+
export namespace test.after.always.cb.failing.serial {
|
|
722
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
723
|
+
export function skip(implementation: CallbackTest): void;
|
|
724
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
725
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
726
|
+
export function todo(name: string, implementation: CallbackTest): void;
|
|
727
|
+
export function todo(implementation: CallbackTest): void;
|
|
728
|
+
export function todo(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
729
|
+
export function todo(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
730
|
+
}
|
|
731
|
+
export namespace test.after.always.cb.failing.skip {
|
|
732
|
+
export const serial: typeof test.after.always.cb.failing.serial.skip;
|
|
733
|
+
}
|
|
734
|
+
export namespace test.after.always.cb.failing.todo {
|
|
735
|
+
export const serial: typeof test.after.always.cb.failing.serial.todo;
|
|
413
736
|
}
|
|
414
737
|
export namespace test.skip {
|
|
415
738
|
export const serial: typeof test.serial.skip;
|
|
@@ -419,6 +742,7 @@ export namespace test.skip {
|
|
|
419
742
|
export const beforeEach: typeof test.beforeEach.skip;
|
|
420
743
|
export const afterEach: typeof test.afterEach.skip;
|
|
421
744
|
export const cb: typeof test.cb.skip;
|
|
745
|
+
export const always: typeof test.always.skip;
|
|
422
746
|
}
|
|
423
747
|
export namespace test.todo {
|
|
424
748
|
export const serial: typeof test.serial.todo;
|
|
@@ -428,33 +752,48 @@ export namespace test.todo {
|
|
|
428
752
|
export const beforeEach: typeof test.beforeEach.todo;
|
|
429
753
|
export const afterEach: typeof test.afterEach.todo;
|
|
430
754
|
export const cb: typeof test.cb.todo;
|
|
755
|
+
export const always: typeof test.always.todo;
|
|
431
756
|
}
|
|
432
757
|
export namespace test.failing {
|
|
433
758
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
434
759
|
export function serial(implementation: ContextualTest): void;
|
|
760
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
761
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
435
762
|
export const before: typeof test.before.failing;
|
|
436
763
|
export const after: typeof test.after.failing;
|
|
437
764
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
438
765
|
export function skip(implementation: ContextualTest): void;
|
|
766
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
767
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
439
768
|
export function todo(name: string, implementation: ContextualTest): void;
|
|
440
769
|
export function todo(implementation: ContextualTest): void;
|
|
770
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
771
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
441
772
|
export function only(name: string, implementation: ContextualTest): void;
|
|
442
773
|
export function only(implementation: ContextualTest): void;
|
|
774
|
+
export function only(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
775
|
+
export function only(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
443
776
|
export const beforeEach: typeof test.beforeEach.failing;
|
|
444
777
|
export const afterEach: typeof test.afterEach.failing;
|
|
445
778
|
export const cb: typeof test.cb.failing;
|
|
779
|
+
export const always: typeof test.always.failing;
|
|
446
780
|
}
|
|
447
781
|
export namespace test.failing.serial {
|
|
448
782
|
export const before: typeof test.before.failing.serial;
|
|
449
783
|
export const after: typeof test.after.failing.serial;
|
|
450
784
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
451
785
|
export function skip(implementation: ContextualTest): void;
|
|
786
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
787
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
452
788
|
export function todo(name: string, implementation: ContextualTest): void;
|
|
453
789
|
export function todo(implementation: ContextualTest): void;
|
|
790
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
791
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
454
792
|
export const only: typeof test.failing.only.serial;
|
|
455
793
|
export const beforeEach: typeof test.beforeEach.failing.serial;
|
|
456
794
|
export const afterEach: typeof test.afterEach.failing.serial;
|
|
457
795
|
export const cb: typeof test.cb.failing.serial;
|
|
796
|
+
export const always: typeof test.always.failing.serial;
|
|
458
797
|
}
|
|
459
798
|
export namespace test.failing.serial.skip {
|
|
460
799
|
export const before: typeof test.before.failing.serial.skip;
|
|
@@ -462,6 +801,7 @@ export namespace test.failing.serial.skip {
|
|
|
462
801
|
export const beforeEach: typeof test.beforeEach.failing.serial.skip;
|
|
463
802
|
export const afterEach: typeof test.afterEach.failing.serial.skip;
|
|
464
803
|
export const cb: typeof test.cb.failing.serial.skip;
|
|
804
|
+
export const always: typeof test.always.failing.serial.skip;
|
|
465
805
|
}
|
|
466
806
|
export namespace test.failing.serial.todo {
|
|
467
807
|
export const before: typeof test.before.failing.serial.todo;
|
|
@@ -469,6 +809,7 @@ export namespace test.failing.serial.todo {
|
|
|
469
809
|
export const beforeEach: typeof test.beforeEach.failing.serial.todo;
|
|
470
810
|
export const afterEach: typeof test.afterEach.failing.serial.todo;
|
|
471
811
|
export const cb: typeof test.cb.failing.serial.todo;
|
|
812
|
+
export const always: typeof test.always.failing.serial.todo;
|
|
472
813
|
}
|
|
473
814
|
export namespace test.failing.skip {
|
|
474
815
|
export const serial: typeof test.failing.serial.skip;
|
|
@@ -477,6 +818,7 @@ export namespace test.failing.skip {
|
|
|
477
818
|
export const beforeEach: typeof test.beforeEach.failing.skip;
|
|
478
819
|
export const afterEach: typeof test.afterEach.failing.skip;
|
|
479
820
|
export const cb: typeof test.cb.failing.skip;
|
|
821
|
+
export const always: typeof test.always.failing.skip;
|
|
480
822
|
}
|
|
481
823
|
export namespace test.failing.todo {
|
|
482
824
|
export const serial: typeof test.failing.serial.todo;
|
|
@@ -485,10 +827,13 @@ export namespace test.failing.todo {
|
|
|
485
827
|
export const beforeEach: typeof test.beforeEach.failing.todo;
|
|
486
828
|
export const afterEach: typeof test.afterEach.failing.todo;
|
|
487
829
|
export const cb: typeof test.cb.failing.todo;
|
|
830
|
+
export const always: typeof test.always.failing.todo;
|
|
488
831
|
}
|
|
489
832
|
export namespace test.failing.only {
|
|
490
833
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
491
834
|
export function serial(implementation: ContextualTest): void;
|
|
835
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
836
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
492
837
|
export const cb: typeof test.cb.failing.only;
|
|
493
838
|
}
|
|
494
839
|
export namespace test.failing.only.serial {
|
|
@@ -497,6 +842,8 @@ export namespace test.failing.only.serial {
|
|
|
497
842
|
export namespace test.only {
|
|
498
843
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
499
844
|
export function serial(implementation: ContextualTest): void;
|
|
845
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
846
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
500
847
|
export const failing: typeof test.failing.only;
|
|
501
848
|
export const cb: typeof test.cb.only;
|
|
502
849
|
}
|
|
@@ -505,22 +852,36 @@ export namespace test.only.serial {
|
|
|
505
852
|
export const cb: typeof test.cb.only.serial;
|
|
506
853
|
}
|
|
507
854
|
export namespace test.beforeEach {
|
|
508
|
-
export function serial(name: string, implementation:
|
|
509
|
-
export function serial(implementation:
|
|
510
|
-
export function
|
|
511
|
-
export function
|
|
512
|
-
export function
|
|
513
|
-
export function
|
|
514
|
-
export function
|
|
515
|
-
export function
|
|
516
|
-
export function
|
|
517
|
-
export function
|
|
855
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
856
|
+
export function serial(implementation: ContextualTest): void;
|
|
857
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
858
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
859
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
860
|
+
export function skip(implementation: ContextualTest): void;
|
|
861
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
862
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
863
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
864
|
+
export function todo(implementation: ContextualTest): void;
|
|
865
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
866
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
867
|
+
export function failing(name: string, implementation: ContextualTest): void;
|
|
868
|
+
export function failing(implementation: ContextualTest): void;
|
|
869
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
870
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
871
|
+
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
872
|
+
export function cb(implementation: ContextualCallbackTest): void;
|
|
873
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
874
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
518
875
|
}
|
|
519
876
|
export namespace test.beforeEach.serial {
|
|
520
|
-
export function skip(name: string, implementation:
|
|
521
|
-
export function skip(implementation:
|
|
522
|
-
export function
|
|
523
|
-
export function
|
|
877
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
878
|
+
export function skip(implementation: ContextualTest): void;
|
|
879
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
880
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
881
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
882
|
+
export function todo(implementation: ContextualTest): void;
|
|
883
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
884
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
524
885
|
export const failing: typeof test.beforeEach.failing.serial;
|
|
525
886
|
export const cb: typeof test.beforeEach.cb.serial;
|
|
526
887
|
}
|
|
@@ -543,19 +904,29 @@ export namespace test.beforeEach.todo {
|
|
|
543
904
|
export const cb: typeof test.beforeEach.cb.todo;
|
|
544
905
|
}
|
|
545
906
|
export namespace test.beforeEach.failing {
|
|
546
|
-
export function serial(name: string, implementation:
|
|
547
|
-
export function serial(implementation:
|
|
548
|
-
export function
|
|
549
|
-
export function
|
|
550
|
-
export function
|
|
551
|
-
export function
|
|
907
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
908
|
+
export function serial(implementation: ContextualTest): void;
|
|
909
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
910
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
911
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
912
|
+
export function skip(implementation: ContextualTest): void;
|
|
913
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
914
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
915
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
916
|
+
export function todo(implementation: ContextualTest): void;
|
|
917
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
918
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
552
919
|
export const cb: typeof test.beforeEach.cb.failing;
|
|
553
920
|
}
|
|
554
921
|
export namespace test.beforeEach.failing.serial {
|
|
555
|
-
export function skip(name: string, implementation:
|
|
556
|
-
export function skip(implementation:
|
|
557
|
-
export function
|
|
558
|
-
export function
|
|
922
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
923
|
+
export function skip(implementation: ContextualTest): void;
|
|
924
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
925
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
926
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
927
|
+
export function todo(implementation: ContextualTest): void;
|
|
928
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
929
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
559
930
|
export const cb: typeof test.beforeEach.cb.failing.serial;
|
|
560
931
|
}
|
|
561
932
|
export namespace test.beforeEach.failing.serial.skip {
|
|
@@ -573,20 +944,32 @@ export namespace test.beforeEach.failing.todo {
|
|
|
573
944
|
export const cb: typeof test.beforeEach.cb.failing.todo;
|
|
574
945
|
}
|
|
575
946
|
export namespace test.beforeEach.cb {
|
|
576
|
-
export function serial(name: string, implementation:
|
|
577
|
-
export function serial(implementation:
|
|
578
|
-
export function
|
|
579
|
-
export function
|
|
580
|
-
export function
|
|
581
|
-
export function
|
|
582
|
-
export function
|
|
583
|
-
export function
|
|
947
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
948
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
949
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
950
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
951
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
952
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
953
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
954
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
955
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
956
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
957
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
958
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
959
|
+
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
960
|
+
export function failing(implementation: ContextualCallbackTest): void;
|
|
961
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
962
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
584
963
|
}
|
|
585
964
|
export namespace test.beforeEach.cb.serial {
|
|
586
|
-
export function skip(name: string, implementation:
|
|
587
|
-
export function skip(implementation:
|
|
588
|
-
export function
|
|
589
|
-
export function
|
|
965
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
966
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
967
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
968
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
969
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
970
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
971
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
972
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
590
973
|
export const failing: typeof test.beforeEach.cb.failing.serial;
|
|
591
974
|
}
|
|
592
975
|
export namespace test.beforeEach.cb.serial.skip {
|
|
@@ -604,18 +987,28 @@ export namespace test.beforeEach.cb.todo {
|
|
|
604
987
|
export const failing: typeof test.beforeEach.cb.failing.todo;
|
|
605
988
|
}
|
|
606
989
|
export namespace test.beforeEach.cb.failing {
|
|
607
|
-
export function serial(name: string, implementation:
|
|
608
|
-
export function serial(implementation:
|
|
609
|
-
export function
|
|
610
|
-
export function
|
|
611
|
-
export function
|
|
612
|
-
export function
|
|
990
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
991
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
992
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
993
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
994
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
995
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
996
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
997
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
998
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
999
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1000
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1001
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
613
1002
|
}
|
|
614
1003
|
export namespace test.beforeEach.cb.failing.serial {
|
|
615
|
-
export function skip(name: string, implementation:
|
|
616
|
-
export function skip(implementation:
|
|
617
|
-
export function
|
|
618
|
-
export function
|
|
1004
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1005
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1006
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1007
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1008
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1009
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1010
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1011
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
619
1012
|
}
|
|
620
1013
|
export namespace test.beforeEach.cb.failing.skip {
|
|
621
1014
|
export const serial: typeof test.beforeEach.cb.failing.serial.skip;
|
|
@@ -624,151 +1017,409 @@ export namespace test.beforeEach.cb.failing.todo {
|
|
|
624
1017
|
export const serial: typeof test.beforeEach.cb.failing.serial.todo;
|
|
625
1018
|
}
|
|
626
1019
|
export namespace test.afterEach {
|
|
627
|
-
export function serial(name: string, implementation:
|
|
628
|
-
export function serial(implementation:
|
|
629
|
-
export function
|
|
630
|
-
export function
|
|
631
|
-
export function
|
|
632
|
-
export function
|
|
633
|
-
export function
|
|
634
|
-
export function
|
|
635
|
-
export function
|
|
636
|
-
export function
|
|
1020
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
1021
|
+
export function serial(implementation: ContextualTest): void;
|
|
1022
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1023
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1024
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1025
|
+
export function skip(implementation: ContextualTest): void;
|
|
1026
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1027
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1028
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1029
|
+
export function todo(implementation: ContextualTest): void;
|
|
1030
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1031
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1032
|
+
export function failing(name: string, implementation: ContextualTest): void;
|
|
1033
|
+
export function failing(implementation: ContextualTest): void;
|
|
1034
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1035
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1036
|
+
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
1037
|
+
export function cb(implementation: ContextualCallbackTest): void;
|
|
1038
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1039
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1040
|
+
export function always(name: string, implementation: ContextualTest): void;
|
|
1041
|
+
export function always(implementation: ContextualTest): void;
|
|
1042
|
+
export function always(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1043
|
+
export function always(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
637
1044
|
}
|
|
638
1045
|
export namespace test.afterEach.serial {
|
|
639
|
-
export function skip(name: string, implementation:
|
|
640
|
-
export function skip(implementation:
|
|
641
|
-
export function
|
|
642
|
-
export function
|
|
1046
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1047
|
+
export function skip(implementation: ContextualTest): void;
|
|
1048
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1049
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1050
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1051
|
+
export function todo(implementation: ContextualTest): void;
|
|
1052
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1053
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
643
1054
|
export const failing: typeof test.afterEach.failing.serial;
|
|
644
1055
|
export const cb: typeof test.afterEach.cb.serial;
|
|
1056
|
+
export const always: typeof test.afterEach.always.serial;
|
|
645
1057
|
}
|
|
646
1058
|
export namespace test.afterEach.serial.skip {
|
|
647
1059
|
export const failing: typeof test.afterEach.failing.serial.skip;
|
|
648
1060
|
export const cb: typeof test.afterEach.cb.serial.skip;
|
|
1061
|
+
export const always: typeof test.afterEach.always.serial.skip;
|
|
649
1062
|
}
|
|
650
1063
|
export namespace test.afterEach.serial.todo {
|
|
651
1064
|
export const failing: typeof test.afterEach.failing.serial.todo;
|
|
652
1065
|
export const cb: typeof test.afterEach.cb.serial.todo;
|
|
1066
|
+
export const always: typeof test.afterEach.always.serial.todo;
|
|
653
1067
|
}
|
|
654
1068
|
export namespace test.afterEach.skip {
|
|
655
1069
|
export const serial: typeof test.afterEach.serial.skip;
|
|
656
1070
|
export const failing: typeof test.afterEach.failing.skip;
|
|
657
1071
|
export const cb: typeof test.afterEach.cb.skip;
|
|
1072
|
+
export const always: typeof test.afterEach.always.skip;
|
|
658
1073
|
}
|
|
659
1074
|
export namespace test.afterEach.todo {
|
|
660
1075
|
export const serial: typeof test.afterEach.serial.todo;
|
|
661
1076
|
export const failing: typeof test.afterEach.failing.todo;
|
|
662
1077
|
export const cb: typeof test.afterEach.cb.todo;
|
|
1078
|
+
export const always: typeof test.afterEach.always.todo;
|
|
663
1079
|
}
|
|
664
1080
|
export namespace test.afterEach.failing {
|
|
665
|
-
export function serial(name: string, implementation:
|
|
666
|
-
export function serial(implementation:
|
|
667
|
-
export function
|
|
668
|
-
export function
|
|
669
|
-
export function
|
|
670
|
-
export function
|
|
1081
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
1082
|
+
export function serial(implementation: ContextualTest): void;
|
|
1083
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1084
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1085
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1086
|
+
export function skip(implementation: ContextualTest): void;
|
|
1087
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1088
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1089
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1090
|
+
export function todo(implementation: ContextualTest): void;
|
|
1091
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1092
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
671
1093
|
export const cb: typeof test.afterEach.cb.failing;
|
|
1094
|
+
export const always: typeof test.afterEach.always.failing;
|
|
672
1095
|
}
|
|
673
1096
|
export namespace test.afterEach.failing.serial {
|
|
674
|
-
export function skip(name: string, implementation:
|
|
675
|
-
export function skip(implementation:
|
|
676
|
-
export function
|
|
677
|
-
export function
|
|
1097
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1098
|
+
export function skip(implementation: ContextualTest): void;
|
|
1099
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1100
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1101
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1102
|
+
export function todo(implementation: ContextualTest): void;
|
|
1103
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1104
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
678
1105
|
export const cb: typeof test.afterEach.cb.failing.serial;
|
|
1106
|
+
export const always: typeof test.afterEach.always.failing.serial;
|
|
679
1107
|
}
|
|
680
1108
|
export namespace test.afterEach.failing.serial.skip {
|
|
681
1109
|
export const cb: typeof test.afterEach.cb.failing.serial.skip;
|
|
1110
|
+
export const always: typeof test.afterEach.always.failing.serial.skip;
|
|
682
1111
|
}
|
|
683
1112
|
export namespace test.afterEach.failing.serial.todo {
|
|
684
1113
|
export const cb: typeof test.afterEach.cb.failing.serial.todo;
|
|
1114
|
+
export const always: typeof test.afterEach.always.failing.serial.todo;
|
|
685
1115
|
}
|
|
686
1116
|
export namespace test.afterEach.failing.skip {
|
|
687
1117
|
export const serial: typeof test.afterEach.failing.serial.skip;
|
|
688
1118
|
export const cb: typeof test.afterEach.cb.failing.skip;
|
|
1119
|
+
export const always: typeof test.afterEach.always.failing.skip;
|
|
689
1120
|
}
|
|
690
1121
|
export namespace test.afterEach.failing.todo {
|
|
691
1122
|
export const serial: typeof test.afterEach.failing.serial.todo;
|
|
692
1123
|
export const cb: typeof test.afterEach.cb.failing.todo;
|
|
1124
|
+
export const always: typeof test.afterEach.always.failing.todo;
|
|
693
1125
|
}
|
|
694
1126
|
export namespace test.afterEach.cb {
|
|
695
|
-
export function serial(name: string, implementation:
|
|
696
|
-
export function serial(implementation:
|
|
697
|
-
export function
|
|
698
|
-
export function
|
|
699
|
-
export function
|
|
700
|
-
export function
|
|
701
|
-
export function
|
|
702
|
-
export function
|
|
1127
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1128
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1129
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1130
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1131
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1132
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1133
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1134
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1135
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1136
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1137
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1138
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1139
|
+
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
1140
|
+
export function failing(implementation: ContextualCallbackTest): void;
|
|
1141
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1142
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1143
|
+
export const always: typeof test.afterEach.always.cb;
|
|
703
1144
|
}
|
|
704
1145
|
export namespace test.afterEach.cb.serial {
|
|
705
|
-
export function skip(name: string, implementation:
|
|
706
|
-
export function skip(implementation:
|
|
707
|
-
export function
|
|
708
|
-
export function
|
|
1146
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1147
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1148
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1149
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1150
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1151
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1152
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1153
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
709
1154
|
export const failing: typeof test.afterEach.cb.failing.serial;
|
|
1155
|
+
export const always: typeof test.afterEach.always.cb.serial;
|
|
710
1156
|
}
|
|
711
1157
|
export namespace test.afterEach.cb.serial.skip {
|
|
712
1158
|
export const failing: typeof test.afterEach.cb.failing.serial.skip;
|
|
1159
|
+
export const always: typeof test.afterEach.always.cb.serial.skip;
|
|
713
1160
|
}
|
|
714
1161
|
export namespace test.afterEach.cb.serial.todo {
|
|
715
1162
|
export const failing: typeof test.afterEach.cb.failing.serial.todo;
|
|
1163
|
+
export const always: typeof test.afterEach.always.cb.serial.todo;
|
|
716
1164
|
}
|
|
717
1165
|
export namespace test.afterEach.cb.skip {
|
|
718
1166
|
export const serial: typeof test.afterEach.cb.serial.skip;
|
|
719
1167
|
export const failing: typeof test.afterEach.cb.failing.skip;
|
|
1168
|
+
export const always: typeof test.afterEach.always.cb.skip;
|
|
720
1169
|
}
|
|
721
1170
|
export namespace test.afterEach.cb.todo {
|
|
722
1171
|
export const serial: typeof test.afterEach.cb.serial.todo;
|
|
723
1172
|
export const failing: typeof test.afterEach.cb.failing.todo;
|
|
1173
|
+
export const always: typeof test.afterEach.always.cb.todo;
|
|
724
1174
|
}
|
|
725
1175
|
export namespace test.afterEach.cb.failing {
|
|
726
|
-
export function serial(name: string, implementation:
|
|
727
|
-
export function serial(implementation:
|
|
728
|
-
export function
|
|
729
|
-
export function
|
|
730
|
-
export function
|
|
731
|
-
export function
|
|
1176
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1177
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1178
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1179
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1180
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1181
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1182
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1183
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1184
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1185
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1186
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1187
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1188
|
+
export const always: typeof test.afterEach.always.cb.failing;
|
|
732
1189
|
}
|
|
733
1190
|
export namespace test.afterEach.cb.failing.serial {
|
|
734
|
-
export function skip(name: string, implementation:
|
|
735
|
-
export function skip(implementation:
|
|
736
|
-
export function
|
|
737
|
-
export function
|
|
1191
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1192
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1193
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1194
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1195
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1196
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1197
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1198
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1199
|
+
export const always: typeof test.afterEach.always.cb.failing.serial;
|
|
1200
|
+
}
|
|
1201
|
+
export namespace test.afterEach.cb.failing.serial.skip {
|
|
1202
|
+
export const always: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1203
|
+
}
|
|
1204
|
+
export namespace test.afterEach.cb.failing.serial.todo {
|
|
1205
|
+
export const always: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
738
1206
|
}
|
|
739
1207
|
export namespace test.afterEach.cb.failing.skip {
|
|
740
1208
|
export const serial: typeof test.afterEach.cb.failing.serial.skip;
|
|
1209
|
+
export const always: typeof test.afterEach.always.cb.failing.skip;
|
|
741
1210
|
}
|
|
742
1211
|
export namespace test.afterEach.cb.failing.todo {
|
|
743
1212
|
export const serial: typeof test.afterEach.cb.failing.serial.todo;
|
|
1213
|
+
export const always: typeof test.afterEach.always.cb.failing.todo;
|
|
1214
|
+
}
|
|
1215
|
+
export namespace test.afterEach.always {
|
|
1216
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
1217
|
+
export function serial(implementation: ContextualTest): void;
|
|
1218
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1219
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1220
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1221
|
+
export function skip(implementation: ContextualTest): void;
|
|
1222
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1223
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1224
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1225
|
+
export function todo(implementation: ContextualTest): void;
|
|
1226
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1227
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1228
|
+
export function failing(name: string, implementation: ContextualTest): void;
|
|
1229
|
+
export function failing(implementation: ContextualTest): void;
|
|
1230
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1231
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1232
|
+
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
1233
|
+
export function cb(implementation: ContextualCallbackTest): void;
|
|
1234
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1235
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1236
|
+
}
|
|
1237
|
+
export namespace test.afterEach.always.serial {
|
|
1238
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1239
|
+
export function skip(implementation: ContextualTest): void;
|
|
1240
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1241
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1242
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1243
|
+
export function todo(implementation: ContextualTest): void;
|
|
1244
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1245
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1246
|
+
export const failing: typeof test.afterEach.always.failing.serial;
|
|
1247
|
+
export const cb: typeof test.afterEach.always.cb.serial;
|
|
1248
|
+
}
|
|
1249
|
+
export namespace test.afterEach.always.serial.skip {
|
|
1250
|
+
export const failing: typeof test.afterEach.always.failing.serial.skip;
|
|
1251
|
+
export const cb: typeof test.afterEach.always.cb.serial.skip;
|
|
1252
|
+
}
|
|
1253
|
+
export namespace test.afterEach.always.serial.todo {
|
|
1254
|
+
export const failing: typeof test.afterEach.always.failing.serial.todo;
|
|
1255
|
+
export const cb: typeof test.afterEach.always.cb.serial.todo;
|
|
1256
|
+
}
|
|
1257
|
+
export namespace test.afterEach.always.skip {
|
|
1258
|
+
export const serial: typeof test.afterEach.always.serial.skip;
|
|
1259
|
+
export const failing: typeof test.afterEach.always.failing.skip;
|
|
1260
|
+
export const cb: typeof test.afterEach.always.cb.skip;
|
|
1261
|
+
}
|
|
1262
|
+
export namespace test.afterEach.always.todo {
|
|
1263
|
+
export const serial: typeof test.afterEach.always.serial.todo;
|
|
1264
|
+
export const failing: typeof test.afterEach.always.failing.todo;
|
|
1265
|
+
export const cb: typeof test.afterEach.always.cb.todo;
|
|
1266
|
+
}
|
|
1267
|
+
export namespace test.afterEach.always.failing {
|
|
1268
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
1269
|
+
export function serial(implementation: ContextualTest): void;
|
|
1270
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1271
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1272
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1273
|
+
export function skip(implementation: ContextualTest): void;
|
|
1274
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1275
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1276
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1277
|
+
export function todo(implementation: ContextualTest): void;
|
|
1278
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1279
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1280
|
+
export const cb: typeof test.afterEach.always.cb.failing;
|
|
1281
|
+
}
|
|
1282
|
+
export namespace test.afterEach.always.failing.serial {
|
|
1283
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1284
|
+
export function skip(implementation: ContextualTest): void;
|
|
1285
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1286
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1287
|
+
export function todo(name: string, implementation: ContextualTest): void;
|
|
1288
|
+
export function todo(implementation: ContextualTest): void;
|
|
1289
|
+
export function todo(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1290
|
+
export function todo(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1291
|
+
export const cb: typeof test.afterEach.always.cb.failing.serial;
|
|
1292
|
+
}
|
|
1293
|
+
export namespace test.afterEach.always.failing.serial.skip {
|
|
1294
|
+
export const cb: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1295
|
+
}
|
|
1296
|
+
export namespace test.afterEach.always.failing.serial.todo {
|
|
1297
|
+
export const cb: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
1298
|
+
}
|
|
1299
|
+
export namespace test.afterEach.always.failing.skip {
|
|
1300
|
+
export const serial: typeof test.afterEach.always.failing.serial.skip;
|
|
1301
|
+
export const cb: typeof test.afterEach.always.cb.failing.skip;
|
|
1302
|
+
}
|
|
1303
|
+
export namespace test.afterEach.always.failing.todo {
|
|
1304
|
+
export const serial: typeof test.afterEach.always.failing.serial.todo;
|
|
1305
|
+
export const cb: typeof test.afterEach.always.cb.failing.todo;
|
|
1306
|
+
}
|
|
1307
|
+
export namespace test.afterEach.always.cb {
|
|
1308
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1309
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1310
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1311
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1312
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1313
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1314
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1315
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1316
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1317
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1318
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1319
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1320
|
+
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
1321
|
+
export function failing(implementation: ContextualCallbackTest): void;
|
|
1322
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1323
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1324
|
+
}
|
|
1325
|
+
export namespace test.afterEach.always.cb.serial {
|
|
1326
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1327
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1328
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1329
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1330
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1331
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1332
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1333
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1334
|
+
export const failing: typeof test.afterEach.always.cb.failing.serial;
|
|
1335
|
+
}
|
|
1336
|
+
export namespace test.afterEach.always.cb.serial.skip {
|
|
1337
|
+
export const failing: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1338
|
+
}
|
|
1339
|
+
export namespace test.afterEach.always.cb.serial.todo {
|
|
1340
|
+
export const failing: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
1341
|
+
}
|
|
1342
|
+
export namespace test.afterEach.always.cb.skip {
|
|
1343
|
+
export const serial: typeof test.afterEach.always.cb.serial.skip;
|
|
1344
|
+
export const failing: typeof test.afterEach.always.cb.failing.skip;
|
|
1345
|
+
}
|
|
1346
|
+
export namespace test.afterEach.always.cb.todo {
|
|
1347
|
+
export const serial: typeof test.afterEach.always.cb.serial.todo;
|
|
1348
|
+
export const failing: typeof test.afterEach.always.cb.failing.todo;
|
|
1349
|
+
}
|
|
1350
|
+
export namespace test.afterEach.always.cb.failing {
|
|
1351
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1352
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1353
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1354
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1355
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1356
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1357
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1358
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1359
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1360
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1361
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1362
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1363
|
+
}
|
|
1364
|
+
export namespace test.afterEach.always.cb.failing.serial {
|
|
1365
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1366
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1367
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1368
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1369
|
+
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
1370
|
+
export function todo(implementation: ContextualCallbackTest): void;
|
|
1371
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1372
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1373
|
+
}
|
|
1374
|
+
export namespace test.afterEach.always.cb.failing.skip {
|
|
1375
|
+
export const serial: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1376
|
+
}
|
|
1377
|
+
export namespace test.afterEach.always.cb.failing.todo {
|
|
1378
|
+
export const serial: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
744
1379
|
}
|
|
745
1380
|
export namespace test.cb {
|
|
746
1381
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
747
1382
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1383
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1384
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
748
1385
|
export const before: typeof test.before.cb;
|
|
749
1386
|
export const after: typeof test.after.cb;
|
|
750
1387
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
751
1388
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
1389
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1390
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
752
1391
|
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
753
1392
|
export function todo(implementation: ContextualCallbackTest): void;
|
|
1393
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1394
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
754
1395
|
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
755
1396
|
export function failing(implementation: ContextualCallbackTest): void;
|
|
1397
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1398
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
756
1399
|
export function only(name: string, implementation: ContextualCallbackTest): void;
|
|
757
1400
|
export function only(implementation: ContextualCallbackTest): void;
|
|
1401
|
+
export function only(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1402
|
+
export function only(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
758
1403
|
export const beforeEach: typeof test.beforeEach.cb;
|
|
759
1404
|
export const afterEach: typeof test.afterEach.cb;
|
|
1405
|
+
export const always: typeof test.always.cb;
|
|
760
1406
|
}
|
|
761
1407
|
export namespace test.cb.serial {
|
|
762
1408
|
export const before: typeof test.before.cb.serial;
|
|
763
1409
|
export const after: typeof test.after.cb.serial;
|
|
764
1410
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
765
1411
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
1412
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1413
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
766
1414
|
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
767
1415
|
export function todo(implementation: ContextualCallbackTest): void;
|
|
1416
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1417
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
768
1418
|
export const failing: typeof test.cb.failing.serial;
|
|
769
1419
|
export const only: typeof test.cb.only.serial;
|
|
770
1420
|
export const beforeEach: typeof test.beforeEach.cb.serial;
|
|
771
1421
|
export const afterEach: typeof test.afterEach.cb.serial;
|
|
1422
|
+
export const always: typeof test.always.cb.serial;
|
|
772
1423
|
}
|
|
773
1424
|
export namespace test.cb.serial.skip {
|
|
774
1425
|
export const before: typeof test.before.cb.serial.skip;
|
|
@@ -776,6 +1427,7 @@ export namespace test.cb.serial.skip {
|
|
|
776
1427
|
export const failing: typeof test.cb.failing.serial.skip;
|
|
777
1428
|
export const beforeEach: typeof test.beforeEach.cb.serial.skip;
|
|
778
1429
|
export const afterEach: typeof test.afterEach.cb.serial.skip;
|
|
1430
|
+
export const always: typeof test.always.cb.serial.skip;
|
|
779
1431
|
}
|
|
780
1432
|
export namespace test.cb.serial.todo {
|
|
781
1433
|
export const before: typeof test.before.cb.serial.todo;
|
|
@@ -783,6 +1435,7 @@ export namespace test.cb.serial.todo {
|
|
|
783
1435
|
export const failing: typeof test.cb.failing.serial.todo;
|
|
784
1436
|
export const beforeEach: typeof test.beforeEach.cb.serial.todo;
|
|
785
1437
|
export const afterEach: typeof test.afterEach.cb.serial.todo;
|
|
1438
|
+
export const always: typeof test.always.cb.serial.todo;
|
|
786
1439
|
}
|
|
787
1440
|
export namespace test.cb.skip {
|
|
788
1441
|
export const serial: typeof test.cb.serial.skip;
|
|
@@ -791,6 +1444,7 @@ export namespace test.cb.skip {
|
|
|
791
1444
|
export const failing: typeof test.cb.failing.skip;
|
|
792
1445
|
export const beforeEach: typeof test.beforeEach.cb.skip;
|
|
793
1446
|
export const afterEach: typeof test.afterEach.cb.skip;
|
|
1447
|
+
export const always: typeof test.always.cb.skip;
|
|
794
1448
|
}
|
|
795
1449
|
export namespace test.cb.todo {
|
|
796
1450
|
export const serial: typeof test.cb.serial.todo;
|
|
@@ -799,43 +1453,60 @@ export namespace test.cb.todo {
|
|
|
799
1453
|
export const failing: typeof test.cb.failing.todo;
|
|
800
1454
|
export const beforeEach: typeof test.beforeEach.cb.todo;
|
|
801
1455
|
export const afterEach: typeof test.afterEach.cb.todo;
|
|
1456
|
+
export const always: typeof test.always.cb.todo;
|
|
802
1457
|
}
|
|
803
1458
|
export namespace test.cb.failing {
|
|
804
1459
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
805
1460
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1461
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1462
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
806
1463
|
export const before: typeof test.before.cb.failing;
|
|
807
1464
|
export const after: typeof test.after.cb.failing;
|
|
808
1465
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
809
1466
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
1467
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1468
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
810
1469
|
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
811
1470
|
export function todo(implementation: ContextualCallbackTest): void;
|
|
1471
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1472
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
812
1473
|
export function only(name: string, implementation: ContextualCallbackTest): void;
|
|
813
1474
|
export function only(implementation: ContextualCallbackTest): void;
|
|
1475
|
+
export function only(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1476
|
+
export function only(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
814
1477
|
export const beforeEach: typeof test.beforeEach.cb.failing;
|
|
815
1478
|
export const afterEach: typeof test.afterEach.cb.failing;
|
|
1479
|
+
export const always: typeof test.always.cb.failing;
|
|
816
1480
|
}
|
|
817
1481
|
export namespace test.cb.failing.serial {
|
|
818
1482
|
export const before: typeof test.before.cb.failing.serial;
|
|
819
1483
|
export const after: typeof test.after.cb.failing.serial;
|
|
820
1484
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
821
1485
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
1486
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1487
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
822
1488
|
export function todo(name: string, implementation: ContextualCallbackTest): void;
|
|
823
1489
|
export function todo(implementation: ContextualCallbackTest): void;
|
|
1490
|
+
export function todo(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1491
|
+
export function todo(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
824
1492
|
export const only: typeof test.cb.failing.only.serial;
|
|
825
1493
|
export const beforeEach: typeof test.beforeEach.cb.failing.serial;
|
|
826
1494
|
export const afterEach: typeof test.afterEach.cb.failing.serial;
|
|
1495
|
+
export const always: typeof test.always.cb.failing.serial;
|
|
827
1496
|
}
|
|
828
1497
|
export namespace test.cb.failing.serial.skip {
|
|
829
1498
|
export const before: typeof test.before.cb.failing.serial.skip;
|
|
830
1499
|
export const after: typeof test.after.cb.failing.serial.skip;
|
|
831
1500
|
export const beforeEach: typeof test.beforeEach.cb.failing.serial.skip;
|
|
832
1501
|
export const afterEach: typeof test.afterEach.cb.failing.serial.skip;
|
|
1502
|
+
export const always: typeof test.always.cb.failing.serial.skip;
|
|
833
1503
|
}
|
|
834
1504
|
export namespace test.cb.failing.serial.todo {
|
|
835
1505
|
export const before: typeof test.before.cb.failing.serial.todo;
|
|
836
1506
|
export const after: typeof test.after.cb.failing.serial.todo;
|
|
837
1507
|
export const beforeEach: typeof test.beforeEach.cb.failing.serial.todo;
|
|
838
1508
|
export const afterEach: typeof test.afterEach.cb.failing.serial.todo;
|
|
1509
|
+
export const always: typeof test.always.cb.failing.serial.todo;
|
|
839
1510
|
}
|
|
840
1511
|
export namespace test.cb.failing.skip {
|
|
841
1512
|
export const serial: typeof test.cb.failing.serial.skip;
|
|
@@ -843,6 +1514,7 @@ export namespace test.cb.failing.skip {
|
|
|
843
1514
|
export const after: typeof test.after.cb.failing.skip;
|
|
844
1515
|
export const beforeEach: typeof test.beforeEach.cb.failing.skip;
|
|
845
1516
|
export const afterEach: typeof test.afterEach.cb.failing.skip;
|
|
1517
|
+
export const always: typeof test.always.cb.failing.skip;
|
|
846
1518
|
}
|
|
847
1519
|
export namespace test.cb.failing.todo {
|
|
848
1520
|
export const serial: typeof test.cb.failing.serial.todo;
|
|
@@ -850,16 +1522,146 @@ export namespace test.cb.failing.todo {
|
|
|
850
1522
|
export const after: typeof test.after.cb.failing.todo;
|
|
851
1523
|
export const beforeEach: typeof test.beforeEach.cb.failing.todo;
|
|
852
1524
|
export const afterEach: typeof test.afterEach.cb.failing.todo;
|
|
1525
|
+
export const always: typeof test.always.cb.failing.todo;
|
|
853
1526
|
}
|
|
854
1527
|
export namespace test.cb.failing.only {
|
|
855
1528
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
856
1529
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1530
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1531
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
857
1532
|
}
|
|
858
1533
|
export namespace test.cb.only {
|
|
859
1534
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
860
1535
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1536
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1537
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
861
1538
|
export const failing: typeof test.cb.failing.only;
|
|
862
1539
|
}
|
|
863
1540
|
export namespace test.cb.only.serial {
|
|
864
1541
|
export const failing: typeof test.cb.failing.only.serial;
|
|
865
1542
|
}
|
|
1543
|
+
export namespace test.always {
|
|
1544
|
+
export const after: typeof test.after.always;
|
|
1545
|
+
export const afterEach: typeof test.afterEach.always;
|
|
1546
|
+
}
|
|
1547
|
+
export namespace test.always.serial {
|
|
1548
|
+
export const after: typeof test.after.always.serial;
|
|
1549
|
+
export const failing: typeof test.always.failing.serial;
|
|
1550
|
+
export const afterEach: typeof test.afterEach.always.serial;
|
|
1551
|
+
export const cb: typeof test.always.cb.serial;
|
|
1552
|
+
}
|
|
1553
|
+
export namespace test.always.serial.skip {
|
|
1554
|
+
export const after: typeof test.after.always.serial.skip;
|
|
1555
|
+
export const failing: typeof test.always.failing.serial.skip;
|
|
1556
|
+
export const afterEach: typeof test.afterEach.always.serial.skip;
|
|
1557
|
+
export const cb: typeof test.always.cb.serial.skip;
|
|
1558
|
+
}
|
|
1559
|
+
export namespace test.always.serial.todo {
|
|
1560
|
+
export const after: typeof test.after.always.serial.todo;
|
|
1561
|
+
export const failing: typeof test.always.failing.serial.todo;
|
|
1562
|
+
export const afterEach: typeof test.afterEach.always.serial.todo;
|
|
1563
|
+
export const cb: typeof test.always.cb.serial.todo;
|
|
1564
|
+
}
|
|
1565
|
+
export namespace test.always.skip {
|
|
1566
|
+
export const serial: typeof test.always.serial.skip;
|
|
1567
|
+
export const after: typeof test.after.always.skip;
|
|
1568
|
+
export const failing: typeof test.always.failing.skip;
|
|
1569
|
+
export const afterEach: typeof test.afterEach.always.skip;
|
|
1570
|
+
export const cb: typeof test.always.cb.skip;
|
|
1571
|
+
}
|
|
1572
|
+
export namespace test.always.todo {
|
|
1573
|
+
export const serial: typeof test.always.serial.todo;
|
|
1574
|
+
export const after: typeof test.after.always.todo;
|
|
1575
|
+
export const failing: typeof test.always.failing.todo;
|
|
1576
|
+
export const afterEach: typeof test.afterEach.always.todo;
|
|
1577
|
+
export const cb: typeof test.always.cb.todo;
|
|
1578
|
+
}
|
|
1579
|
+
export namespace test.always.failing {
|
|
1580
|
+
export const after: typeof test.after.always.failing;
|
|
1581
|
+
export const afterEach: typeof test.afterEach.always.failing;
|
|
1582
|
+
export const cb: typeof test.always.cb.failing;
|
|
1583
|
+
}
|
|
1584
|
+
export namespace test.always.failing.serial {
|
|
1585
|
+
export const after: typeof test.after.always.failing.serial;
|
|
1586
|
+
export const afterEach: typeof test.afterEach.always.failing.serial;
|
|
1587
|
+
export const cb: typeof test.always.cb.failing.serial;
|
|
1588
|
+
}
|
|
1589
|
+
export namespace test.always.failing.serial.skip {
|
|
1590
|
+
export const after: typeof test.after.always.failing.serial.skip;
|
|
1591
|
+
export const afterEach: typeof test.afterEach.always.failing.serial.skip;
|
|
1592
|
+
export const cb: typeof test.always.cb.failing.serial.skip;
|
|
1593
|
+
}
|
|
1594
|
+
export namespace test.always.failing.serial.todo {
|
|
1595
|
+
export const after: typeof test.after.always.failing.serial.todo;
|
|
1596
|
+
export const afterEach: typeof test.afterEach.always.failing.serial.todo;
|
|
1597
|
+
export const cb: typeof test.always.cb.failing.serial.todo;
|
|
1598
|
+
}
|
|
1599
|
+
export namespace test.always.failing.skip {
|
|
1600
|
+
export const serial: typeof test.always.failing.serial.skip;
|
|
1601
|
+
export const after: typeof test.after.always.failing.skip;
|
|
1602
|
+
export const afterEach: typeof test.afterEach.always.failing.skip;
|
|
1603
|
+
export const cb: typeof test.always.cb.failing.skip;
|
|
1604
|
+
}
|
|
1605
|
+
export namespace test.always.failing.todo {
|
|
1606
|
+
export const serial: typeof test.always.failing.serial.todo;
|
|
1607
|
+
export const after: typeof test.after.always.failing.todo;
|
|
1608
|
+
export const afterEach: typeof test.afterEach.always.failing.todo;
|
|
1609
|
+
export const cb: typeof test.always.cb.failing.todo;
|
|
1610
|
+
}
|
|
1611
|
+
export namespace test.always.cb {
|
|
1612
|
+
export const after: typeof test.after.always.cb;
|
|
1613
|
+
export const afterEach: typeof test.afterEach.always.cb;
|
|
1614
|
+
}
|
|
1615
|
+
export namespace test.always.cb.serial {
|
|
1616
|
+
export const after: typeof test.after.always.cb.serial;
|
|
1617
|
+
export const failing: typeof test.always.cb.failing.serial;
|
|
1618
|
+
export const afterEach: typeof test.afterEach.always.cb.serial;
|
|
1619
|
+
}
|
|
1620
|
+
export namespace test.always.cb.serial.skip {
|
|
1621
|
+
export const after: typeof test.after.always.cb.serial.skip;
|
|
1622
|
+
export const failing: typeof test.always.cb.failing.serial.skip;
|
|
1623
|
+
export const afterEach: typeof test.afterEach.always.cb.serial.skip;
|
|
1624
|
+
}
|
|
1625
|
+
export namespace test.always.cb.serial.todo {
|
|
1626
|
+
export const after: typeof test.after.always.cb.serial.todo;
|
|
1627
|
+
export const failing: typeof test.always.cb.failing.serial.todo;
|
|
1628
|
+
export const afterEach: typeof test.afterEach.always.cb.serial.todo;
|
|
1629
|
+
}
|
|
1630
|
+
export namespace test.always.cb.skip {
|
|
1631
|
+
export const serial: typeof test.always.cb.serial.skip;
|
|
1632
|
+
export const after: typeof test.after.always.cb.skip;
|
|
1633
|
+
export const failing: typeof test.always.cb.failing.skip;
|
|
1634
|
+
export const afterEach: typeof test.afterEach.always.cb.skip;
|
|
1635
|
+
}
|
|
1636
|
+
export namespace test.always.cb.todo {
|
|
1637
|
+
export const serial: typeof test.always.cb.serial.todo;
|
|
1638
|
+
export const after: typeof test.after.always.cb.todo;
|
|
1639
|
+
export const failing: typeof test.always.cb.failing.todo;
|
|
1640
|
+
export const afterEach: typeof test.afterEach.always.cb.todo;
|
|
1641
|
+
}
|
|
1642
|
+
export namespace test.always.cb.failing {
|
|
1643
|
+
export const after: typeof test.after.always.cb.failing;
|
|
1644
|
+
export const afterEach: typeof test.afterEach.always.cb.failing;
|
|
1645
|
+
}
|
|
1646
|
+
export namespace test.always.cb.failing.serial {
|
|
1647
|
+
export const after: typeof test.after.always.cb.failing.serial;
|
|
1648
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.serial;
|
|
1649
|
+
}
|
|
1650
|
+
export namespace test.always.cb.failing.serial.skip {
|
|
1651
|
+
export const after: typeof test.after.always.cb.failing.serial.skip;
|
|
1652
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1653
|
+
}
|
|
1654
|
+
export namespace test.always.cb.failing.serial.todo {
|
|
1655
|
+
export const after: typeof test.after.always.cb.failing.serial.todo;
|
|
1656
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
1657
|
+
}
|
|
1658
|
+
export namespace test.always.cb.failing.skip {
|
|
1659
|
+
export const serial: typeof test.always.cb.failing.serial.skip;
|
|
1660
|
+
export const after: typeof test.after.always.cb.failing.skip;
|
|
1661
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.skip;
|
|
1662
|
+
}
|
|
1663
|
+
export namespace test.always.cb.failing.todo {
|
|
1664
|
+
export const serial: typeof test.always.cb.failing.serial.todo;
|
|
1665
|
+
export const after: typeof test.after.always.cb.failing.todo;
|
|
1666
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.todo;
|
|
1667
|
+
}
|