ava 0.16.0 → 0.18.2
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 +297 -265
- package/cli.js +15 -179
- package/index.js +5 -98
- package/index.js.flow +201 -0
- package/lib/assert.js +87 -53
- package/lib/ava-error.js +4 -8
- package/lib/ava-files.js +282 -0
- package/lib/babel-config.js +35 -73
- package/lib/beautify-stack.js +17 -16
- package/lib/caching-precompiler.js +72 -87
- package/lib/cli.js +181 -0
- package/lib/code-excerpt.js +57 -0
- package/lib/colors.js +6 -2
- package/lib/concurrent.js +62 -75
- package/lib/enhance-assert.js +57 -49
- package/lib/extract-stack.js +10 -0
- package/lib/fork.js +67 -68
- package/lib/format-assert-error.js +72 -0
- package/lib/globals.js +3 -8
- package/lib/hook.js +15 -20
- package/lib/logger.js +59 -82
- package/lib/main.js +90 -0
- package/lib/prefix-title.js +21 -0
- package/lib/process-adapter.js +108 -0
- package/lib/reporters/mini.js +260 -257
- package/lib/reporters/tap.js +80 -85
- package/lib/reporters/verbose.js +142 -115
- package/lib/run-status.js +110 -152
- package/lib/runner.js +125 -137
- package/lib/sequence.js +68 -84
- package/lib/serialize-error.js +68 -4
- package/lib/snapshot-state.js +30 -0
- package/lib/test-collection.js +144 -156
- package/lib/test-worker.js +45 -95
- package/lib/test.js +289 -318
- package/lib/throws-helper.js +9 -9
- package/lib/validate-test.js +48 -0
- package/lib/watcher.js +258 -297
- package/package.json +63 -53
- package/profile.js +68 -55
- package/readme.md +215 -101
- package/types/generated.d.ts +848 -228
- package/types/make.js +54 -23
- package/lib/send.js +0 -16
package/types/generated.d.ts
CHANGED
|
@@ -32,22 +32,14 @@ export interface AssertContext {
|
|
|
32
32
|
* Assert that value is falsy.
|
|
33
33
|
*/
|
|
34
34
|
falsy(value: any, message?: string): void;
|
|
35
|
-
/**
|
|
36
|
-
* DEPRECATED, use `truthy`. Assert that value is truthy.
|
|
37
|
-
*/
|
|
38
|
-
ok(value: any, message?: string): void;
|
|
39
|
-
/**
|
|
40
|
-
* DEPRECATED, use `falsy`. Assert that value is falsy.
|
|
41
|
-
*/
|
|
42
|
-
notOk(value: any, message?: string): void;
|
|
43
35
|
/**
|
|
44
36
|
* Assert that value is true.
|
|
45
37
|
*/
|
|
46
|
-
true(value:
|
|
38
|
+
true(value: any, message?: string): void;
|
|
47
39
|
/**
|
|
48
40
|
* Assert that value is false.
|
|
49
41
|
*/
|
|
50
|
-
false(value:
|
|
42
|
+
false(value: any, message?: string): void;
|
|
51
43
|
/**
|
|
52
44
|
* Assert that value is equal to expected.
|
|
53
45
|
*/
|
|
@@ -64,16 +56,6 @@ export interface AssertContext {
|
|
|
64
56
|
* Assert that value is not deep equal to expected.
|
|
65
57
|
*/
|
|
66
58
|
notDeepEqual<U>(value: U, expected: U, message?: string): void;
|
|
67
|
-
/**
|
|
68
|
-
* Assert that function throws an error or promise rejects.
|
|
69
|
-
* DEPRECATED, use `deepEqual`. Assert that value is deep equal to expected.
|
|
70
|
-
* @param error Can be a constructor, regex, error message or validation function.
|
|
71
|
-
*/
|
|
72
|
-
same<U>(value: U, expected: U, message?: string): void;
|
|
73
|
-
/**
|
|
74
|
-
* DEPRECATED use `notDeepEqual`. Assert that value is not deep equal to expected.
|
|
75
|
-
*/
|
|
76
|
-
notSame<U>(value: U, expected: U, message?: string): void;
|
|
77
59
|
/**
|
|
78
60
|
* Assert that function throws an error or promise rejects.
|
|
79
61
|
* @param error Can be a constructor, regex, error message or validation function.
|
|
@@ -89,6 +71,10 @@ export interface AssertContext {
|
|
|
89
71
|
* Assert that contents matches regex.
|
|
90
72
|
*/
|
|
91
73
|
regex(contents: string, regex: RegExp, message?: string): void;
|
|
74
|
+
/**
|
|
75
|
+
* Assert that contents matches a snapshot.
|
|
76
|
+
*/
|
|
77
|
+
snapshot(contents: any, message?: string): void;
|
|
92
78
|
/**
|
|
93
79
|
* Assert that contents does not match regex.
|
|
94
80
|
*/
|
|
@@ -120,42 +106,69 @@ export interface ContextualCallbackTestContext extends CallbackTestContext {
|
|
|
120
106
|
context: any;
|
|
121
107
|
}
|
|
122
108
|
|
|
109
|
+
export interface Macro<T> {
|
|
110
|
+
(t: T, ...args: any[]): void;
|
|
111
|
+
title? (providedTitle: string, ...args: any[]): string;
|
|
112
|
+
}
|
|
113
|
+
export type Macros<T> = Macro<T> | Macro<T>[];
|
|
114
|
+
|
|
123
115
|
export function test(name: string, run: ContextualTest): void;
|
|
124
116
|
export function test(run: ContextualTest): void;
|
|
117
|
+
export function test(name: string, run: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
118
|
+
export function test(run: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
125
119
|
export namespace test {
|
|
126
120
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
127
121
|
export function serial(implementation: ContextualTest): void;
|
|
128
|
-
export function
|
|
129
|
-
export function
|
|
130
|
-
export function
|
|
131
|
-
export function
|
|
122
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
123
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
124
|
+
export function before(name: string, implementation: Test): void;
|
|
125
|
+
export function before(implementation: Test): void;
|
|
126
|
+
export function before(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
127
|
+
export function before(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
128
|
+
export function after(name: string, implementation: Test): void;
|
|
129
|
+
export function after(implementation: Test): void;
|
|
130
|
+
export function after(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
131
|
+
export function after(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
132
132
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
133
133
|
export function skip(implementation: ContextualTest): void;
|
|
134
|
-
export function
|
|
135
|
-
export function
|
|
134
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
135
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
136
|
+
export function todo(name: string): void;
|
|
136
137
|
export function failing(name: string, implementation: ContextualTest): void;
|
|
137
138
|
export function failing(implementation: ContextualTest): void;
|
|
139
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
140
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
138
141
|
export function only(name: string, implementation: ContextualTest): void;
|
|
139
142
|
export function only(implementation: ContextualTest): void;
|
|
140
|
-
export function
|
|
141
|
-
export function
|
|
142
|
-
export function
|
|
143
|
-
export function
|
|
143
|
+
export function only(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
144
|
+
export function only(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
145
|
+
export function beforeEach(name: string, implementation: ContextualTest): void;
|
|
146
|
+
export function beforeEach(implementation: ContextualTest): void;
|
|
147
|
+
export function beforeEach(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
148
|
+
export function beforeEach(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
149
|
+
export function afterEach(name: string, implementation: ContextualTest): void;
|
|
150
|
+
export function afterEach(implementation: ContextualTest): void;
|
|
151
|
+
export function afterEach(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
152
|
+
export function afterEach(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
144
153
|
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
145
154
|
export function cb(implementation: ContextualCallbackTest): void;
|
|
155
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
156
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
146
157
|
}
|
|
147
158
|
export namespace test.serial {
|
|
148
159
|
export const before: typeof test.before.serial;
|
|
149
160
|
export const after: typeof test.after.serial;
|
|
150
161
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
151
162
|
export function skip(implementation: ContextualTest): void;
|
|
152
|
-
export function
|
|
153
|
-
export function
|
|
163
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
164
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
165
|
+
export function todo(name: string): void;
|
|
154
166
|
export const failing: typeof test.failing.serial;
|
|
155
167
|
export const only: typeof test.only.serial;
|
|
156
168
|
export const beforeEach: typeof test.beforeEach.serial;
|
|
157
169
|
export const afterEach: typeof test.afterEach.serial;
|
|
158
170
|
export const cb: typeof test.cb.serial;
|
|
171
|
+
export const always: typeof test.always.serial;
|
|
159
172
|
}
|
|
160
173
|
export namespace test.serial.skip {
|
|
161
174
|
export const before: typeof test.before.serial.skip;
|
|
@@ -164,6 +177,7 @@ export namespace test.serial.skip {
|
|
|
164
177
|
export const beforeEach: typeof test.beforeEach.serial.skip;
|
|
165
178
|
export const afterEach: typeof test.afterEach.serial.skip;
|
|
166
179
|
export const cb: typeof test.cb.serial.skip;
|
|
180
|
+
export const always: typeof test.always.serial.skip;
|
|
167
181
|
}
|
|
168
182
|
export namespace test.serial.todo {
|
|
169
183
|
export const before: typeof test.before.serial.todo;
|
|
@@ -172,24 +186,33 @@ export namespace test.serial.todo {
|
|
|
172
186
|
export const beforeEach: typeof test.beforeEach.serial.todo;
|
|
173
187
|
export const afterEach: typeof test.afterEach.serial.todo;
|
|
174
188
|
export const cb: typeof test.cb.serial.todo;
|
|
189
|
+
export const always: typeof test.always.serial.todo;
|
|
175
190
|
}
|
|
176
191
|
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
|
|
192
|
+
export function serial(name: string, implementation: Test): void;
|
|
193
|
+
export function serial(implementation: Test): void;
|
|
194
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
195
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
196
|
+
export function skip(name: string, implementation: Test): void;
|
|
197
|
+
export function skip(implementation: Test): void;
|
|
198
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
199
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
200
|
+
export function todo(name: string): void;
|
|
201
|
+
export function failing(name: string, implementation: Test): void;
|
|
202
|
+
export function failing(implementation: Test): void;
|
|
203
|
+
export function failing(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
204
|
+
export function failing(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
205
|
+
export function cb(name: string, implementation: CallbackTest): void;
|
|
206
|
+
export function cb(implementation: CallbackTest): void;
|
|
207
|
+
export function cb(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
208
|
+
export function cb(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
187
209
|
}
|
|
188
210
|
export namespace test.before.serial {
|
|
189
|
-
export function skip(name: string, implementation:
|
|
190
|
-
export function skip(implementation:
|
|
191
|
-
export function
|
|
192
|
-
export function
|
|
211
|
+
export function skip(name: string, implementation: Test): void;
|
|
212
|
+
export function skip(implementation: Test): void;
|
|
213
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
214
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
215
|
+
export function todo(name: string): void;
|
|
193
216
|
export const failing: typeof test.before.failing.serial;
|
|
194
217
|
export const cb: typeof test.before.cb.serial;
|
|
195
218
|
}
|
|
@@ -212,19 +235,23 @@ export namespace test.before.todo {
|
|
|
212
235
|
export const cb: typeof test.before.cb.todo;
|
|
213
236
|
}
|
|
214
237
|
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
|
|
238
|
+
export function serial(name: string, implementation: Test): void;
|
|
239
|
+
export function serial(implementation: Test): void;
|
|
240
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
241
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
242
|
+
export function skip(name: string, implementation: Test): void;
|
|
243
|
+
export function skip(implementation: Test): void;
|
|
244
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
245
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
246
|
+
export function todo(name: string): void;
|
|
221
247
|
export const cb: typeof test.before.cb.failing;
|
|
222
248
|
}
|
|
223
249
|
export namespace test.before.failing.serial {
|
|
224
|
-
export function skip(name: string, implementation:
|
|
225
|
-
export function skip(implementation:
|
|
226
|
-
export function
|
|
227
|
-
export function
|
|
250
|
+
export function skip(name: string, implementation: Test): void;
|
|
251
|
+
export function skip(implementation: Test): void;
|
|
252
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
253
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
254
|
+
export function todo(name: string): void;
|
|
228
255
|
export const cb: typeof test.before.cb.failing.serial;
|
|
229
256
|
}
|
|
230
257
|
export namespace test.before.failing.serial.skip {
|
|
@@ -242,20 +269,26 @@ export namespace test.before.failing.todo {
|
|
|
242
269
|
export const cb: typeof test.before.cb.failing.todo;
|
|
243
270
|
}
|
|
244
271
|
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
|
|
272
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
273
|
+
export function serial(implementation: CallbackTest): void;
|
|
274
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
275
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
276
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
277
|
+
export function skip(implementation: CallbackTest): void;
|
|
278
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
279
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
280
|
+
export function todo(name: string): void;
|
|
281
|
+
export function failing(name: string, implementation: CallbackTest): void;
|
|
282
|
+
export function failing(implementation: CallbackTest): void;
|
|
283
|
+
export function failing(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
284
|
+
export function failing(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
253
285
|
}
|
|
254
286
|
export namespace test.before.cb.serial {
|
|
255
|
-
export function skip(name: string, implementation:
|
|
256
|
-
export function skip(implementation:
|
|
257
|
-
export function
|
|
258
|
-
export function
|
|
287
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
288
|
+
export function skip(implementation: CallbackTest): void;
|
|
289
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
290
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
291
|
+
export function todo(name: string): void;
|
|
259
292
|
export const failing: typeof test.before.cb.failing.serial;
|
|
260
293
|
}
|
|
261
294
|
export namespace test.before.cb.serial.skip {
|
|
@@ -273,18 +306,22 @@ export namespace test.before.cb.todo {
|
|
|
273
306
|
export const failing: typeof test.before.cb.failing.todo;
|
|
274
307
|
}
|
|
275
308
|
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
|
|
309
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
310
|
+
export function serial(implementation: CallbackTest): void;
|
|
311
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
312
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
313
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
314
|
+
export function skip(implementation: CallbackTest): void;
|
|
315
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
316
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
317
|
+
export function todo(name: string): void;
|
|
282
318
|
}
|
|
283
319
|
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
|
|
320
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
321
|
+
export function skip(implementation: CallbackTest): void;
|
|
322
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
323
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
324
|
+
export function todo(name: string): void;
|
|
288
325
|
}
|
|
289
326
|
export namespace test.before.cb.failing.skip {
|
|
290
327
|
export const serial: typeof test.before.cb.failing.serial.skip;
|
|
@@ -293,123 +330,317 @@ export namespace test.before.cb.failing.todo {
|
|
|
293
330
|
export const serial: typeof test.before.cb.failing.serial.todo;
|
|
294
331
|
}
|
|
295
332
|
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
|
|
333
|
+
export function serial(name: string, implementation: Test): void;
|
|
334
|
+
export function serial(implementation: Test): void;
|
|
335
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
336
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
337
|
+
export function skip(name: string, implementation: Test): void;
|
|
338
|
+
export function skip(implementation: Test): void;
|
|
339
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
340
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
341
|
+
export function todo(name: string): void;
|
|
342
|
+
export function failing(name: string, implementation: Test): void;
|
|
343
|
+
export function failing(implementation: Test): void;
|
|
344
|
+
export function failing(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
345
|
+
export function failing(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
346
|
+
export function cb(name: string, implementation: CallbackTest): void;
|
|
347
|
+
export function cb(implementation: CallbackTest): void;
|
|
348
|
+
export function cb(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
349
|
+
export function cb(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
350
|
+
export function always(name: string, implementation: Test): void;
|
|
351
|
+
export function always(implementation: Test): void;
|
|
352
|
+
export function always(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
353
|
+
export function always(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
306
354
|
}
|
|
307
355
|
export namespace test.after.serial {
|
|
308
|
-
export function skip(name: string, implementation:
|
|
309
|
-
export function skip(implementation:
|
|
310
|
-
export function
|
|
311
|
-
export function
|
|
356
|
+
export function skip(name: string, implementation: Test): void;
|
|
357
|
+
export function skip(implementation: Test): void;
|
|
358
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
359
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
360
|
+
export function todo(name: string): void;
|
|
312
361
|
export const failing: typeof test.after.failing.serial;
|
|
313
362
|
export const cb: typeof test.after.cb.serial;
|
|
363
|
+
export const always: typeof test.after.always.serial;
|
|
314
364
|
}
|
|
315
365
|
export namespace test.after.serial.skip {
|
|
316
366
|
export const failing: typeof test.after.failing.serial.skip;
|
|
317
367
|
export const cb: typeof test.after.cb.serial.skip;
|
|
368
|
+
export const always: typeof test.after.always.serial.skip;
|
|
318
369
|
}
|
|
319
370
|
export namespace test.after.serial.todo {
|
|
320
371
|
export const failing: typeof test.after.failing.serial.todo;
|
|
321
372
|
export const cb: typeof test.after.cb.serial.todo;
|
|
373
|
+
export const always: typeof test.after.always.serial.todo;
|
|
322
374
|
}
|
|
323
375
|
export namespace test.after.skip {
|
|
324
376
|
export const serial: typeof test.after.serial.skip;
|
|
325
377
|
export const failing: typeof test.after.failing.skip;
|
|
326
378
|
export const cb: typeof test.after.cb.skip;
|
|
379
|
+
export const always: typeof test.after.always.skip;
|
|
327
380
|
}
|
|
328
381
|
export namespace test.after.todo {
|
|
329
382
|
export const serial: typeof test.after.serial.todo;
|
|
330
383
|
export const failing: typeof test.after.failing.todo;
|
|
331
384
|
export const cb: typeof test.after.cb.todo;
|
|
385
|
+
export const always: typeof test.after.always.todo;
|
|
332
386
|
}
|
|
333
387
|
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
|
|
388
|
+
export function serial(name: string, implementation: Test): void;
|
|
389
|
+
export function serial(implementation: Test): void;
|
|
390
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
391
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
392
|
+
export function skip(name: string, implementation: Test): void;
|
|
393
|
+
export function skip(implementation: Test): void;
|
|
394
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
395
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
396
|
+
export function todo(name: string): void;
|
|
340
397
|
export const cb: typeof test.after.cb.failing;
|
|
398
|
+
export const always: typeof test.after.always.failing;
|
|
341
399
|
}
|
|
342
400
|
export namespace test.after.failing.serial {
|
|
343
|
-
export function skip(name: string, implementation:
|
|
344
|
-
export function skip(implementation:
|
|
345
|
-
export function
|
|
346
|
-
export function
|
|
401
|
+
export function skip(name: string, implementation: Test): void;
|
|
402
|
+
export function skip(implementation: Test): void;
|
|
403
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
404
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
405
|
+
export function todo(name: string): void;
|
|
347
406
|
export const cb: typeof test.after.cb.failing.serial;
|
|
407
|
+
export const always: typeof test.after.always.failing.serial;
|
|
348
408
|
}
|
|
349
409
|
export namespace test.after.failing.serial.skip {
|
|
350
410
|
export const cb: typeof test.after.cb.failing.serial.skip;
|
|
411
|
+
export const always: typeof test.after.always.failing.serial.skip;
|
|
351
412
|
}
|
|
352
413
|
export namespace test.after.failing.serial.todo {
|
|
353
414
|
export const cb: typeof test.after.cb.failing.serial.todo;
|
|
415
|
+
export const always: typeof test.after.always.failing.serial.todo;
|
|
354
416
|
}
|
|
355
417
|
export namespace test.after.failing.skip {
|
|
356
418
|
export const serial: typeof test.after.failing.serial.skip;
|
|
357
419
|
export const cb: typeof test.after.cb.failing.skip;
|
|
420
|
+
export const always: typeof test.after.always.failing.skip;
|
|
358
421
|
}
|
|
359
422
|
export namespace test.after.failing.todo {
|
|
360
423
|
export const serial: typeof test.after.failing.serial.todo;
|
|
361
424
|
export const cb: typeof test.after.cb.failing.todo;
|
|
425
|
+
export const always: typeof test.after.always.failing.todo;
|
|
362
426
|
}
|
|
363
427
|
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
|
|
428
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
429
|
+
export function serial(implementation: CallbackTest): void;
|
|
430
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
431
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
432
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
433
|
+
export function skip(implementation: CallbackTest): void;
|
|
434
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
435
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
436
|
+
export function todo(name: string): void;
|
|
437
|
+
export function failing(name: string, implementation: CallbackTest): void;
|
|
438
|
+
export function failing(implementation: CallbackTest): void;
|
|
439
|
+
export function failing(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
440
|
+
export function failing(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
441
|
+
export const always: typeof test.after.always.cb;
|
|
372
442
|
}
|
|
373
443
|
export namespace test.after.cb.serial {
|
|
374
|
-
export function skip(name: string, implementation:
|
|
375
|
-
export function skip(implementation:
|
|
376
|
-
export function
|
|
377
|
-
export function
|
|
444
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
445
|
+
export function skip(implementation: CallbackTest): void;
|
|
446
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
447
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
448
|
+
export function todo(name: string): void;
|
|
378
449
|
export const failing: typeof test.after.cb.failing.serial;
|
|
450
|
+
export const always: typeof test.after.always.cb.serial;
|
|
379
451
|
}
|
|
380
452
|
export namespace test.after.cb.serial.skip {
|
|
381
453
|
export const failing: typeof test.after.cb.failing.serial.skip;
|
|
454
|
+
export const always: typeof test.after.always.cb.serial.skip;
|
|
382
455
|
}
|
|
383
456
|
export namespace test.after.cb.serial.todo {
|
|
384
457
|
export const failing: typeof test.after.cb.failing.serial.todo;
|
|
458
|
+
export const always: typeof test.after.always.cb.serial.todo;
|
|
385
459
|
}
|
|
386
460
|
export namespace test.after.cb.skip {
|
|
387
461
|
export const serial: typeof test.after.cb.serial.skip;
|
|
388
462
|
export const failing: typeof test.after.cb.failing.skip;
|
|
463
|
+
export const always: typeof test.after.always.cb.skip;
|
|
389
464
|
}
|
|
390
465
|
export namespace test.after.cb.todo {
|
|
391
466
|
export const serial: typeof test.after.cb.serial.todo;
|
|
392
467
|
export const failing: typeof test.after.cb.failing.todo;
|
|
468
|
+
export const always: typeof test.after.always.cb.todo;
|
|
393
469
|
}
|
|
394
470
|
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
|
|
471
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
472
|
+
export function serial(implementation: CallbackTest): void;
|
|
473
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
474
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
475
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
476
|
+
export function skip(implementation: CallbackTest): void;
|
|
477
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
478
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
479
|
+
export function todo(name: string): void;
|
|
480
|
+
export const always: typeof test.after.always.cb.failing;
|
|
401
481
|
}
|
|
402
482
|
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
|
|
483
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
484
|
+
export function skip(implementation: CallbackTest): void;
|
|
485
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
486
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
487
|
+
export function todo(name: string): void;
|
|
488
|
+
export const always: typeof test.after.always.cb.failing.serial;
|
|
489
|
+
}
|
|
490
|
+
export namespace test.after.cb.failing.serial.skip {
|
|
491
|
+
export const always: typeof test.after.always.cb.failing.serial.skip;
|
|
492
|
+
}
|
|
493
|
+
export namespace test.after.cb.failing.serial.todo {
|
|
494
|
+
export const always: typeof test.after.always.cb.failing.serial.todo;
|
|
407
495
|
}
|
|
408
496
|
export namespace test.after.cb.failing.skip {
|
|
409
497
|
export const serial: typeof test.after.cb.failing.serial.skip;
|
|
498
|
+
export const always: typeof test.after.always.cb.failing.skip;
|
|
410
499
|
}
|
|
411
500
|
export namespace test.after.cb.failing.todo {
|
|
412
501
|
export const serial: typeof test.after.cb.failing.serial.todo;
|
|
502
|
+
export const always: typeof test.after.always.cb.failing.todo;
|
|
503
|
+
}
|
|
504
|
+
export namespace test.after.always {
|
|
505
|
+
export function serial(name: string, implementation: Test): void;
|
|
506
|
+
export function serial(implementation: Test): void;
|
|
507
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
508
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
509
|
+
export function skip(name: string, implementation: Test): void;
|
|
510
|
+
export function skip(implementation: Test): void;
|
|
511
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
512
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
513
|
+
export function todo(name: string): void;
|
|
514
|
+
export function failing(name: string, implementation: Test): void;
|
|
515
|
+
export function failing(implementation: Test): void;
|
|
516
|
+
export function failing(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
517
|
+
export function failing(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
518
|
+
export function cb(name: string, implementation: CallbackTest): void;
|
|
519
|
+
export function cb(implementation: CallbackTest): void;
|
|
520
|
+
export function cb(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
521
|
+
export function cb(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
522
|
+
}
|
|
523
|
+
export namespace test.after.always.serial {
|
|
524
|
+
export function skip(name: string, implementation: Test): void;
|
|
525
|
+
export function skip(implementation: Test): void;
|
|
526
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
527
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
528
|
+
export function todo(name: string): void;
|
|
529
|
+
export const failing: typeof test.after.always.failing.serial;
|
|
530
|
+
export const cb: typeof test.after.always.cb.serial;
|
|
531
|
+
}
|
|
532
|
+
export namespace test.after.always.serial.skip {
|
|
533
|
+
export const failing: typeof test.after.always.failing.serial.skip;
|
|
534
|
+
export const cb: typeof test.after.always.cb.serial.skip;
|
|
535
|
+
}
|
|
536
|
+
export namespace test.after.always.serial.todo {
|
|
537
|
+
export const failing: typeof test.after.always.failing.serial.todo;
|
|
538
|
+
export const cb: typeof test.after.always.cb.serial.todo;
|
|
539
|
+
}
|
|
540
|
+
export namespace test.after.always.skip {
|
|
541
|
+
export const serial: typeof test.after.always.serial.skip;
|
|
542
|
+
export const failing: typeof test.after.always.failing.skip;
|
|
543
|
+
export const cb: typeof test.after.always.cb.skip;
|
|
544
|
+
}
|
|
545
|
+
export namespace test.after.always.todo {
|
|
546
|
+
export const serial: typeof test.after.always.serial.todo;
|
|
547
|
+
export const failing: typeof test.after.always.failing.todo;
|
|
548
|
+
export const cb: typeof test.after.always.cb.todo;
|
|
549
|
+
}
|
|
550
|
+
export namespace test.after.always.failing {
|
|
551
|
+
export function serial(name: string, implementation: Test): void;
|
|
552
|
+
export function serial(implementation: Test): void;
|
|
553
|
+
export function serial(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
554
|
+
export function serial(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
555
|
+
export function skip(name: string, implementation: Test): void;
|
|
556
|
+
export function skip(implementation: Test): void;
|
|
557
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
558
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
559
|
+
export function todo(name: string): void;
|
|
560
|
+
export const cb: typeof test.after.always.cb.failing;
|
|
561
|
+
}
|
|
562
|
+
export namespace test.after.always.failing.serial {
|
|
563
|
+
export function skip(name: string, implementation: Test): void;
|
|
564
|
+
export function skip(implementation: Test): void;
|
|
565
|
+
export function skip(name: string, implementation: Macros<TestContext>, ...args: any[]): void;
|
|
566
|
+
export function skip(implementation: Macros<TestContext>, ...args: any[]): void;
|
|
567
|
+
export function todo(name: string): void;
|
|
568
|
+
export const cb: typeof test.after.always.cb.failing.serial;
|
|
569
|
+
}
|
|
570
|
+
export namespace test.after.always.failing.serial.skip {
|
|
571
|
+
export const cb: typeof test.after.always.cb.failing.serial.skip;
|
|
572
|
+
}
|
|
573
|
+
export namespace test.after.always.failing.serial.todo {
|
|
574
|
+
export const cb: typeof test.after.always.cb.failing.serial.todo;
|
|
575
|
+
}
|
|
576
|
+
export namespace test.after.always.failing.skip {
|
|
577
|
+
export const serial: typeof test.after.always.failing.serial.skip;
|
|
578
|
+
export const cb: typeof test.after.always.cb.failing.skip;
|
|
579
|
+
}
|
|
580
|
+
export namespace test.after.always.failing.todo {
|
|
581
|
+
export const serial: typeof test.after.always.failing.serial.todo;
|
|
582
|
+
export const cb: typeof test.after.always.cb.failing.todo;
|
|
583
|
+
}
|
|
584
|
+
export namespace test.after.always.cb {
|
|
585
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
586
|
+
export function serial(implementation: CallbackTest): void;
|
|
587
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
588
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
589
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
590
|
+
export function skip(implementation: CallbackTest): void;
|
|
591
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
592
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
593
|
+
export function todo(name: string): void;
|
|
594
|
+
export function failing(name: string, implementation: CallbackTest): void;
|
|
595
|
+
export function failing(implementation: CallbackTest): void;
|
|
596
|
+
export function failing(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
597
|
+
export function failing(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
598
|
+
}
|
|
599
|
+
export namespace test.after.always.cb.serial {
|
|
600
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
601
|
+
export function skip(implementation: CallbackTest): void;
|
|
602
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
603
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
604
|
+
export function todo(name: string): void;
|
|
605
|
+
export const failing: typeof test.after.always.cb.failing.serial;
|
|
606
|
+
}
|
|
607
|
+
export namespace test.after.always.cb.serial.skip {
|
|
608
|
+
export const failing: typeof test.after.always.cb.failing.serial.skip;
|
|
609
|
+
}
|
|
610
|
+
export namespace test.after.always.cb.serial.todo {
|
|
611
|
+
export const failing: typeof test.after.always.cb.failing.serial.todo;
|
|
612
|
+
}
|
|
613
|
+
export namespace test.after.always.cb.skip {
|
|
614
|
+
export const serial: typeof test.after.always.cb.serial.skip;
|
|
615
|
+
export const failing: typeof test.after.always.cb.failing.skip;
|
|
616
|
+
}
|
|
617
|
+
export namespace test.after.always.cb.todo {
|
|
618
|
+
export const serial: typeof test.after.always.cb.serial.todo;
|
|
619
|
+
export const failing: typeof test.after.always.cb.failing.todo;
|
|
620
|
+
}
|
|
621
|
+
export namespace test.after.always.cb.failing {
|
|
622
|
+
export function serial(name: string, implementation: CallbackTest): void;
|
|
623
|
+
export function serial(implementation: CallbackTest): void;
|
|
624
|
+
export function serial(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
625
|
+
export function serial(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
626
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
627
|
+
export function skip(implementation: CallbackTest): void;
|
|
628
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
629
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
630
|
+
export function todo(name: string): void;
|
|
631
|
+
}
|
|
632
|
+
export namespace test.after.always.cb.failing.serial {
|
|
633
|
+
export function skip(name: string, implementation: CallbackTest): void;
|
|
634
|
+
export function skip(implementation: CallbackTest): void;
|
|
635
|
+
export function skip(name: string, implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
636
|
+
export function skip(implementation: Macros<CallbackTestContext>, ...args: any[]): void;
|
|
637
|
+
export function todo(name: string): void;
|
|
638
|
+
}
|
|
639
|
+
export namespace test.after.always.cb.failing.skip {
|
|
640
|
+
export const serial: typeof test.after.always.cb.failing.serial.skip;
|
|
641
|
+
}
|
|
642
|
+
export namespace test.after.always.cb.failing.todo {
|
|
643
|
+
export const serial: typeof test.after.always.cb.failing.serial.todo;
|
|
413
644
|
}
|
|
414
645
|
export namespace test.skip {
|
|
415
646
|
export const serial: typeof test.serial.skip;
|
|
@@ -419,6 +650,7 @@ export namespace test.skip {
|
|
|
419
650
|
export const beforeEach: typeof test.beforeEach.skip;
|
|
420
651
|
export const afterEach: typeof test.afterEach.skip;
|
|
421
652
|
export const cb: typeof test.cb.skip;
|
|
653
|
+
export const always: typeof test.always.skip;
|
|
422
654
|
}
|
|
423
655
|
export namespace test.todo {
|
|
424
656
|
export const serial: typeof test.serial.todo;
|
|
@@ -428,33 +660,42 @@ export namespace test.todo {
|
|
|
428
660
|
export const beforeEach: typeof test.beforeEach.todo;
|
|
429
661
|
export const afterEach: typeof test.afterEach.todo;
|
|
430
662
|
export const cb: typeof test.cb.todo;
|
|
663
|
+
export const always: typeof test.always.todo;
|
|
431
664
|
}
|
|
432
665
|
export namespace test.failing {
|
|
433
666
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
434
667
|
export function serial(implementation: ContextualTest): void;
|
|
668
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
669
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
435
670
|
export const before: typeof test.before.failing;
|
|
436
671
|
export const after: typeof test.after.failing;
|
|
437
672
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
438
673
|
export function skip(implementation: ContextualTest): void;
|
|
439
|
-
export function
|
|
440
|
-
export function
|
|
674
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
675
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
676
|
+
export function todo(name: string): void;
|
|
441
677
|
export function only(name: string, implementation: ContextualTest): void;
|
|
442
678
|
export function only(implementation: ContextualTest): void;
|
|
679
|
+
export function only(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
680
|
+
export function only(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
443
681
|
export const beforeEach: typeof test.beforeEach.failing;
|
|
444
682
|
export const afterEach: typeof test.afterEach.failing;
|
|
445
683
|
export const cb: typeof test.cb.failing;
|
|
684
|
+
export const always: typeof test.always.failing;
|
|
446
685
|
}
|
|
447
686
|
export namespace test.failing.serial {
|
|
448
687
|
export const before: typeof test.before.failing.serial;
|
|
449
688
|
export const after: typeof test.after.failing.serial;
|
|
450
689
|
export function skip(name: string, implementation: ContextualTest): void;
|
|
451
690
|
export function skip(implementation: ContextualTest): void;
|
|
452
|
-
export function
|
|
453
|
-
export function
|
|
691
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
692
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
693
|
+
export function todo(name: string): void;
|
|
454
694
|
export const only: typeof test.failing.only.serial;
|
|
455
695
|
export const beforeEach: typeof test.beforeEach.failing.serial;
|
|
456
696
|
export const afterEach: typeof test.afterEach.failing.serial;
|
|
457
697
|
export const cb: typeof test.cb.failing.serial;
|
|
698
|
+
export const always: typeof test.always.failing.serial;
|
|
458
699
|
}
|
|
459
700
|
export namespace test.failing.serial.skip {
|
|
460
701
|
export const before: typeof test.before.failing.serial.skip;
|
|
@@ -462,6 +703,7 @@ export namespace test.failing.serial.skip {
|
|
|
462
703
|
export const beforeEach: typeof test.beforeEach.failing.serial.skip;
|
|
463
704
|
export const afterEach: typeof test.afterEach.failing.serial.skip;
|
|
464
705
|
export const cb: typeof test.cb.failing.serial.skip;
|
|
706
|
+
export const always: typeof test.always.failing.serial.skip;
|
|
465
707
|
}
|
|
466
708
|
export namespace test.failing.serial.todo {
|
|
467
709
|
export const before: typeof test.before.failing.serial.todo;
|
|
@@ -469,6 +711,7 @@ export namespace test.failing.serial.todo {
|
|
|
469
711
|
export const beforeEach: typeof test.beforeEach.failing.serial.todo;
|
|
470
712
|
export const afterEach: typeof test.afterEach.failing.serial.todo;
|
|
471
713
|
export const cb: typeof test.cb.failing.serial.todo;
|
|
714
|
+
export const always: typeof test.always.failing.serial.todo;
|
|
472
715
|
}
|
|
473
716
|
export namespace test.failing.skip {
|
|
474
717
|
export const serial: typeof test.failing.serial.skip;
|
|
@@ -477,6 +720,7 @@ export namespace test.failing.skip {
|
|
|
477
720
|
export const beforeEach: typeof test.beforeEach.failing.skip;
|
|
478
721
|
export const afterEach: typeof test.afterEach.failing.skip;
|
|
479
722
|
export const cb: typeof test.cb.failing.skip;
|
|
723
|
+
export const always: typeof test.always.failing.skip;
|
|
480
724
|
}
|
|
481
725
|
export namespace test.failing.todo {
|
|
482
726
|
export const serial: typeof test.failing.serial.todo;
|
|
@@ -485,10 +729,13 @@ export namespace test.failing.todo {
|
|
|
485
729
|
export const beforeEach: typeof test.beforeEach.failing.todo;
|
|
486
730
|
export const afterEach: typeof test.afterEach.failing.todo;
|
|
487
731
|
export const cb: typeof test.cb.failing.todo;
|
|
732
|
+
export const always: typeof test.always.failing.todo;
|
|
488
733
|
}
|
|
489
734
|
export namespace test.failing.only {
|
|
490
735
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
491
736
|
export function serial(implementation: ContextualTest): void;
|
|
737
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
738
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
492
739
|
export const cb: typeof test.cb.failing.only;
|
|
493
740
|
}
|
|
494
741
|
export namespace test.failing.only.serial {
|
|
@@ -497,6 +744,8 @@ export namespace test.failing.only.serial {
|
|
|
497
744
|
export namespace test.only {
|
|
498
745
|
export function serial(name: string, implementation: ContextualTest): void;
|
|
499
746
|
export function serial(implementation: ContextualTest): void;
|
|
747
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
748
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
500
749
|
export const failing: typeof test.failing.only;
|
|
501
750
|
export const cb: typeof test.cb.only;
|
|
502
751
|
}
|
|
@@ -505,22 +754,30 @@ export namespace test.only.serial {
|
|
|
505
754
|
export const cb: typeof test.cb.only.serial;
|
|
506
755
|
}
|
|
507
756
|
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
|
|
757
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
758
|
+
export function serial(implementation: ContextualTest): void;
|
|
759
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
760
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
761
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
762
|
+
export function skip(implementation: ContextualTest): void;
|
|
763
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
764
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
765
|
+
export function todo(name: string): void;
|
|
766
|
+
export function failing(name: string, implementation: ContextualTest): void;
|
|
767
|
+
export function failing(implementation: ContextualTest): void;
|
|
768
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
769
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
770
|
+
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
771
|
+
export function cb(implementation: ContextualCallbackTest): void;
|
|
772
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
773
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
518
774
|
}
|
|
519
775
|
export namespace test.beforeEach.serial {
|
|
520
|
-
export function skip(name: string, implementation:
|
|
521
|
-
export function skip(implementation:
|
|
522
|
-
export function
|
|
523
|
-
export function
|
|
776
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
777
|
+
export function skip(implementation: ContextualTest): void;
|
|
778
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
779
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
780
|
+
export function todo(name: string): void;
|
|
524
781
|
export const failing: typeof test.beforeEach.failing.serial;
|
|
525
782
|
export const cb: typeof test.beforeEach.cb.serial;
|
|
526
783
|
}
|
|
@@ -543,19 +800,23 @@ export namespace test.beforeEach.todo {
|
|
|
543
800
|
export const cb: typeof test.beforeEach.cb.todo;
|
|
544
801
|
}
|
|
545
802
|
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
|
|
803
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
804
|
+
export function serial(implementation: ContextualTest): void;
|
|
805
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
806
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
807
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
808
|
+
export function skip(implementation: ContextualTest): void;
|
|
809
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
810
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
811
|
+
export function todo(name: string): void;
|
|
552
812
|
export const cb: typeof test.beforeEach.cb.failing;
|
|
553
813
|
}
|
|
554
814
|
export namespace test.beforeEach.failing.serial {
|
|
555
|
-
export function skip(name: string, implementation:
|
|
556
|
-
export function skip(implementation:
|
|
557
|
-
export function
|
|
558
|
-
export function
|
|
815
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
816
|
+
export function skip(implementation: ContextualTest): void;
|
|
817
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
818
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
819
|
+
export function todo(name: string): void;
|
|
559
820
|
export const cb: typeof test.beforeEach.cb.failing.serial;
|
|
560
821
|
}
|
|
561
822
|
export namespace test.beforeEach.failing.serial.skip {
|
|
@@ -573,20 +834,26 @@ export namespace test.beforeEach.failing.todo {
|
|
|
573
834
|
export const cb: typeof test.beforeEach.cb.failing.todo;
|
|
574
835
|
}
|
|
575
836
|
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
|
|
837
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
838
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
839
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
840
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
841
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
842
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
843
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
844
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
845
|
+
export function todo(name: string): void;
|
|
846
|
+
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
847
|
+
export function failing(implementation: ContextualCallbackTest): void;
|
|
848
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
849
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
584
850
|
}
|
|
585
851
|
export namespace test.beforeEach.cb.serial {
|
|
586
|
-
export function skip(name: string, implementation:
|
|
587
|
-
export function skip(implementation:
|
|
588
|
-
export function
|
|
589
|
-
export function
|
|
852
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
853
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
854
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
855
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
856
|
+
export function todo(name: string): void;
|
|
590
857
|
export const failing: typeof test.beforeEach.cb.failing.serial;
|
|
591
858
|
}
|
|
592
859
|
export namespace test.beforeEach.cb.serial.skip {
|
|
@@ -604,18 +871,22 @@ export namespace test.beforeEach.cb.todo {
|
|
|
604
871
|
export const failing: typeof test.beforeEach.cb.failing.todo;
|
|
605
872
|
}
|
|
606
873
|
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
|
|
874
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
875
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
876
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
877
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
878
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
879
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
880
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
881
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
882
|
+
export function todo(name: string): void;
|
|
613
883
|
}
|
|
614
884
|
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
|
|
885
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
886
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
887
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
888
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
889
|
+
export function todo(name: string): void;
|
|
619
890
|
}
|
|
620
891
|
export namespace test.beforeEach.cb.failing.skip {
|
|
621
892
|
export const serial: typeof test.beforeEach.cb.failing.serial.skip;
|
|
@@ -624,151 +895,355 @@ export namespace test.beforeEach.cb.failing.todo {
|
|
|
624
895
|
export const serial: typeof test.beforeEach.cb.failing.serial.todo;
|
|
625
896
|
}
|
|
626
897
|
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
|
|
898
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
899
|
+
export function serial(implementation: ContextualTest): void;
|
|
900
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
901
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
902
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
903
|
+
export function skip(implementation: ContextualTest): void;
|
|
904
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
905
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
906
|
+
export function todo(name: string): void;
|
|
907
|
+
export function failing(name: string, implementation: ContextualTest): void;
|
|
908
|
+
export function failing(implementation: ContextualTest): void;
|
|
909
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
910
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
911
|
+
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
912
|
+
export function cb(implementation: ContextualCallbackTest): void;
|
|
913
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
914
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
915
|
+
export function always(name: string, implementation: ContextualTest): void;
|
|
916
|
+
export function always(implementation: ContextualTest): void;
|
|
917
|
+
export function always(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
918
|
+
export function always(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
637
919
|
}
|
|
638
920
|
export namespace test.afterEach.serial {
|
|
639
|
-
export function skip(name: string, implementation:
|
|
640
|
-
export function skip(implementation:
|
|
641
|
-
export function
|
|
642
|
-
export function
|
|
921
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
922
|
+
export function skip(implementation: ContextualTest): void;
|
|
923
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
924
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
925
|
+
export function todo(name: string): void;
|
|
643
926
|
export const failing: typeof test.afterEach.failing.serial;
|
|
644
927
|
export const cb: typeof test.afterEach.cb.serial;
|
|
928
|
+
export const always: typeof test.afterEach.always.serial;
|
|
645
929
|
}
|
|
646
930
|
export namespace test.afterEach.serial.skip {
|
|
647
931
|
export const failing: typeof test.afterEach.failing.serial.skip;
|
|
648
932
|
export const cb: typeof test.afterEach.cb.serial.skip;
|
|
933
|
+
export const always: typeof test.afterEach.always.serial.skip;
|
|
649
934
|
}
|
|
650
935
|
export namespace test.afterEach.serial.todo {
|
|
651
936
|
export const failing: typeof test.afterEach.failing.serial.todo;
|
|
652
937
|
export const cb: typeof test.afterEach.cb.serial.todo;
|
|
938
|
+
export const always: typeof test.afterEach.always.serial.todo;
|
|
653
939
|
}
|
|
654
940
|
export namespace test.afterEach.skip {
|
|
655
941
|
export const serial: typeof test.afterEach.serial.skip;
|
|
656
942
|
export const failing: typeof test.afterEach.failing.skip;
|
|
657
943
|
export const cb: typeof test.afterEach.cb.skip;
|
|
944
|
+
export const always: typeof test.afterEach.always.skip;
|
|
658
945
|
}
|
|
659
946
|
export namespace test.afterEach.todo {
|
|
660
947
|
export const serial: typeof test.afterEach.serial.todo;
|
|
661
948
|
export const failing: typeof test.afterEach.failing.todo;
|
|
662
949
|
export const cb: typeof test.afterEach.cb.todo;
|
|
950
|
+
export const always: typeof test.afterEach.always.todo;
|
|
663
951
|
}
|
|
664
952
|
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
|
|
953
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
954
|
+
export function serial(implementation: ContextualTest): void;
|
|
955
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
956
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
957
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
958
|
+
export function skip(implementation: ContextualTest): void;
|
|
959
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
960
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
961
|
+
export function todo(name: string): void;
|
|
671
962
|
export const cb: typeof test.afterEach.cb.failing;
|
|
963
|
+
export const always: typeof test.afterEach.always.failing;
|
|
672
964
|
}
|
|
673
965
|
export namespace test.afterEach.failing.serial {
|
|
674
|
-
export function skip(name: string, implementation:
|
|
675
|
-
export function skip(implementation:
|
|
676
|
-
export function
|
|
677
|
-
export function
|
|
966
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
967
|
+
export function skip(implementation: ContextualTest): void;
|
|
968
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
969
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
970
|
+
export function todo(name: string): void;
|
|
678
971
|
export const cb: typeof test.afterEach.cb.failing.serial;
|
|
972
|
+
export const always: typeof test.afterEach.always.failing.serial;
|
|
679
973
|
}
|
|
680
974
|
export namespace test.afterEach.failing.serial.skip {
|
|
681
975
|
export const cb: typeof test.afterEach.cb.failing.serial.skip;
|
|
976
|
+
export const always: typeof test.afterEach.always.failing.serial.skip;
|
|
682
977
|
}
|
|
683
978
|
export namespace test.afterEach.failing.serial.todo {
|
|
684
979
|
export const cb: typeof test.afterEach.cb.failing.serial.todo;
|
|
980
|
+
export const always: typeof test.afterEach.always.failing.serial.todo;
|
|
685
981
|
}
|
|
686
982
|
export namespace test.afterEach.failing.skip {
|
|
687
983
|
export const serial: typeof test.afterEach.failing.serial.skip;
|
|
688
984
|
export const cb: typeof test.afterEach.cb.failing.skip;
|
|
985
|
+
export const always: typeof test.afterEach.always.failing.skip;
|
|
689
986
|
}
|
|
690
987
|
export namespace test.afterEach.failing.todo {
|
|
691
988
|
export const serial: typeof test.afterEach.failing.serial.todo;
|
|
692
989
|
export const cb: typeof test.afterEach.cb.failing.todo;
|
|
990
|
+
export const always: typeof test.afterEach.always.failing.todo;
|
|
693
991
|
}
|
|
694
992
|
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
|
|
993
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
994
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
995
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
996
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
997
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
998
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
999
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1000
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1001
|
+
export function todo(name: string): void;
|
|
1002
|
+
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
1003
|
+
export function failing(implementation: ContextualCallbackTest): void;
|
|
1004
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1005
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1006
|
+
export const always: typeof test.afterEach.always.cb;
|
|
703
1007
|
}
|
|
704
1008
|
export namespace test.afterEach.cb.serial {
|
|
705
|
-
export function skip(name: string, implementation:
|
|
706
|
-
export function skip(implementation:
|
|
707
|
-
export function
|
|
708
|
-
export function
|
|
1009
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1010
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1011
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1012
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1013
|
+
export function todo(name: string): void;
|
|
709
1014
|
export const failing: typeof test.afterEach.cb.failing.serial;
|
|
1015
|
+
export const always: typeof test.afterEach.always.cb.serial;
|
|
710
1016
|
}
|
|
711
1017
|
export namespace test.afterEach.cb.serial.skip {
|
|
712
1018
|
export const failing: typeof test.afterEach.cb.failing.serial.skip;
|
|
1019
|
+
export const always: typeof test.afterEach.always.cb.serial.skip;
|
|
713
1020
|
}
|
|
714
1021
|
export namespace test.afterEach.cb.serial.todo {
|
|
715
1022
|
export const failing: typeof test.afterEach.cb.failing.serial.todo;
|
|
1023
|
+
export const always: typeof test.afterEach.always.cb.serial.todo;
|
|
716
1024
|
}
|
|
717
1025
|
export namespace test.afterEach.cb.skip {
|
|
718
1026
|
export const serial: typeof test.afterEach.cb.serial.skip;
|
|
719
1027
|
export const failing: typeof test.afterEach.cb.failing.skip;
|
|
1028
|
+
export const always: typeof test.afterEach.always.cb.skip;
|
|
720
1029
|
}
|
|
721
1030
|
export namespace test.afterEach.cb.todo {
|
|
722
1031
|
export const serial: typeof test.afterEach.cb.serial.todo;
|
|
723
1032
|
export const failing: typeof test.afterEach.cb.failing.todo;
|
|
1033
|
+
export const always: typeof test.afterEach.always.cb.todo;
|
|
724
1034
|
}
|
|
725
1035
|
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
|
|
1036
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1037
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1038
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1039
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1040
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1041
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1042
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1043
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1044
|
+
export function todo(name: string): void;
|
|
1045
|
+
export const always: typeof test.afterEach.always.cb.failing;
|
|
732
1046
|
}
|
|
733
1047
|
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
|
|
1048
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1049
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1050
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1051
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1052
|
+
export function todo(name: string): void;
|
|
1053
|
+
export const always: typeof test.afterEach.always.cb.failing.serial;
|
|
1054
|
+
}
|
|
1055
|
+
export namespace test.afterEach.cb.failing.serial.skip {
|
|
1056
|
+
export const always: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1057
|
+
}
|
|
1058
|
+
export namespace test.afterEach.cb.failing.serial.todo {
|
|
1059
|
+
export const always: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
738
1060
|
}
|
|
739
1061
|
export namespace test.afterEach.cb.failing.skip {
|
|
740
1062
|
export const serial: typeof test.afterEach.cb.failing.serial.skip;
|
|
1063
|
+
export const always: typeof test.afterEach.always.cb.failing.skip;
|
|
741
1064
|
}
|
|
742
1065
|
export namespace test.afterEach.cb.failing.todo {
|
|
743
1066
|
export const serial: typeof test.afterEach.cb.failing.serial.todo;
|
|
1067
|
+
export const always: typeof test.afterEach.always.cb.failing.todo;
|
|
1068
|
+
}
|
|
1069
|
+
export namespace test.afterEach.always {
|
|
1070
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
1071
|
+
export function serial(implementation: ContextualTest): void;
|
|
1072
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1073
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1074
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1075
|
+
export function skip(implementation: ContextualTest): void;
|
|
1076
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1077
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1078
|
+
export function todo(name: string): void;
|
|
1079
|
+
export function failing(name: string, implementation: ContextualTest): void;
|
|
1080
|
+
export function failing(implementation: ContextualTest): void;
|
|
1081
|
+
export function failing(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1082
|
+
export function failing(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1083
|
+
export function cb(name: string, implementation: ContextualCallbackTest): void;
|
|
1084
|
+
export function cb(implementation: ContextualCallbackTest): void;
|
|
1085
|
+
export function cb(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1086
|
+
export function cb(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1087
|
+
}
|
|
1088
|
+
export namespace test.afterEach.always.serial {
|
|
1089
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1090
|
+
export function skip(implementation: ContextualTest): void;
|
|
1091
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1092
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1093
|
+
export function todo(name: string): void;
|
|
1094
|
+
export const failing: typeof test.afterEach.always.failing.serial;
|
|
1095
|
+
export const cb: typeof test.afterEach.always.cb.serial;
|
|
1096
|
+
}
|
|
1097
|
+
export namespace test.afterEach.always.serial.skip {
|
|
1098
|
+
export const failing: typeof test.afterEach.always.failing.serial.skip;
|
|
1099
|
+
export const cb: typeof test.afterEach.always.cb.serial.skip;
|
|
1100
|
+
}
|
|
1101
|
+
export namespace test.afterEach.always.serial.todo {
|
|
1102
|
+
export const failing: typeof test.afterEach.always.failing.serial.todo;
|
|
1103
|
+
export const cb: typeof test.afterEach.always.cb.serial.todo;
|
|
1104
|
+
}
|
|
1105
|
+
export namespace test.afterEach.always.skip {
|
|
1106
|
+
export const serial: typeof test.afterEach.always.serial.skip;
|
|
1107
|
+
export const failing: typeof test.afterEach.always.failing.skip;
|
|
1108
|
+
export const cb: typeof test.afterEach.always.cb.skip;
|
|
1109
|
+
}
|
|
1110
|
+
export namespace test.afterEach.always.todo {
|
|
1111
|
+
export const serial: typeof test.afterEach.always.serial.todo;
|
|
1112
|
+
export const failing: typeof test.afterEach.always.failing.todo;
|
|
1113
|
+
export const cb: typeof test.afterEach.always.cb.todo;
|
|
1114
|
+
}
|
|
1115
|
+
export namespace test.afterEach.always.failing {
|
|
1116
|
+
export function serial(name: string, implementation: ContextualTest): void;
|
|
1117
|
+
export function serial(implementation: ContextualTest): void;
|
|
1118
|
+
export function serial(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1119
|
+
export function serial(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1120
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1121
|
+
export function skip(implementation: ContextualTest): void;
|
|
1122
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1123
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1124
|
+
export function todo(name: string): void;
|
|
1125
|
+
export const cb: typeof test.afterEach.always.cb.failing;
|
|
1126
|
+
}
|
|
1127
|
+
export namespace test.afterEach.always.failing.serial {
|
|
1128
|
+
export function skip(name: string, implementation: ContextualTest): void;
|
|
1129
|
+
export function skip(implementation: ContextualTest): void;
|
|
1130
|
+
export function skip(name: string, implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1131
|
+
export function skip(implementation: Macros<ContextualTestContext>, ...args: any[]): void;
|
|
1132
|
+
export function todo(name: string): void;
|
|
1133
|
+
export const cb: typeof test.afterEach.always.cb.failing.serial;
|
|
1134
|
+
}
|
|
1135
|
+
export namespace test.afterEach.always.failing.serial.skip {
|
|
1136
|
+
export const cb: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1137
|
+
}
|
|
1138
|
+
export namespace test.afterEach.always.failing.serial.todo {
|
|
1139
|
+
export const cb: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
1140
|
+
}
|
|
1141
|
+
export namespace test.afterEach.always.failing.skip {
|
|
1142
|
+
export const serial: typeof test.afterEach.always.failing.serial.skip;
|
|
1143
|
+
export const cb: typeof test.afterEach.always.cb.failing.skip;
|
|
1144
|
+
}
|
|
1145
|
+
export namespace test.afterEach.always.failing.todo {
|
|
1146
|
+
export const serial: typeof test.afterEach.always.failing.serial.todo;
|
|
1147
|
+
export const cb: typeof test.afterEach.always.cb.failing.todo;
|
|
1148
|
+
}
|
|
1149
|
+
export namespace test.afterEach.always.cb {
|
|
1150
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1151
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1152
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1153
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1154
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1155
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1156
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1157
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1158
|
+
export function todo(name: string): void;
|
|
1159
|
+
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
1160
|
+
export function failing(implementation: ContextualCallbackTest): void;
|
|
1161
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1162
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1163
|
+
}
|
|
1164
|
+
export namespace test.afterEach.always.cb.serial {
|
|
1165
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1166
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1167
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1168
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1169
|
+
export function todo(name: string): void;
|
|
1170
|
+
export const failing: typeof test.afterEach.always.cb.failing.serial;
|
|
1171
|
+
}
|
|
1172
|
+
export namespace test.afterEach.always.cb.serial.skip {
|
|
1173
|
+
export const failing: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1174
|
+
}
|
|
1175
|
+
export namespace test.afterEach.always.cb.serial.todo {
|
|
1176
|
+
export const failing: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
1177
|
+
}
|
|
1178
|
+
export namespace test.afterEach.always.cb.skip {
|
|
1179
|
+
export const serial: typeof test.afterEach.always.cb.serial.skip;
|
|
1180
|
+
export const failing: typeof test.afterEach.always.cb.failing.skip;
|
|
1181
|
+
}
|
|
1182
|
+
export namespace test.afterEach.always.cb.todo {
|
|
1183
|
+
export const serial: typeof test.afterEach.always.cb.serial.todo;
|
|
1184
|
+
export const failing: typeof test.afterEach.always.cb.failing.todo;
|
|
1185
|
+
}
|
|
1186
|
+
export namespace test.afterEach.always.cb.failing {
|
|
1187
|
+
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
1188
|
+
export function serial(implementation: ContextualCallbackTest): void;
|
|
1189
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1190
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
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): void;
|
|
1196
|
+
}
|
|
1197
|
+
export namespace test.afterEach.always.cb.failing.serial {
|
|
1198
|
+
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
1199
|
+
export function skip(implementation: ContextualCallbackTest): void;
|
|
1200
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1201
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1202
|
+
export function todo(name: string): void;
|
|
1203
|
+
}
|
|
1204
|
+
export namespace test.afterEach.always.cb.failing.skip {
|
|
1205
|
+
export const serial: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1206
|
+
}
|
|
1207
|
+
export namespace test.afterEach.always.cb.failing.todo {
|
|
1208
|
+
export const serial: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
744
1209
|
}
|
|
745
1210
|
export namespace test.cb {
|
|
746
1211
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
747
1212
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1213
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1214
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
748
1215
|
export const before: typeof test.before.cb;
|
|
749
1216
|
export const after: typeof test.after.cb;
|
|
750
1217
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
751
1218
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
752
|
-
export function
|
|
753
|
-
export function
|
|
1219
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1220
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1221
|
+
export function todo(name: string): void;
|
|
754
1222
|
export function failing(name: string, implementation: ContextualCallbackTest): void;
|
|
755
1223
|
export function failing(implementation: ContextualCallbackTest): void;
|
|
1224
|
+
export function failing(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1225
|
+
export function failing(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
756
1226
|
export function only(name: string, implementation: ContextualCallbackTest): void;
|
|
757
1227
|
export function only(implementation: ContextualCallbackTest): void;
|
|
1228
|
+
export function only(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1229
|
+
export function only(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
758
1230
|
export const beforeEach: typeof test.beforeEach.cb;
|
|
759
1231
|
export const afterEach: typeof test.afterEach.cb;
|
|
1232
|
+
export const always: typeof test.always.cb;
|
|
760
1233
|
}
|
|
761
1234
|
export namespace test.cb.serial {
|
|
762
1235
|
export const before: typeof test.before.cb.serial;
|
|
763
1236
|
export const after: typeof test.after.cb.serial;
|
|
764
1237
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
765
1238
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
766
|
-
export function
|
|
767
|
-
export function
|
|
1239
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1240
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1241
|
+
export function todo(name: string): void;
|
|
768
1242
|
export const failing: typeof test.cb.failing.serial;
|
|
769
1243
|
export const only: typeof test.cb.only.serial;
|
|
770
1244
|
export const beforeEach: typeof test.beforeEach.cb.serial;
|
|
771
1245
|
export const afterEach: typeof test.afterEach.cb.serial;
|
|
1246
|
+
export const always: typeof test.always.cb.serial;
|
|
772
1247
|
}
|
|
773
1248
|
export namespace test.cb.serial.skip {
|
|
774
1249
|
export const before: typeof test.before.cb.serial.skip;
|
|
@@ -776,6 +1251,7 @@ export namespace test.cb.serial.skip {
|
|
|
776
1251
|
export const failing: typeof test.cb.failing.serial.skip;
|
|
777
1252
|
export const beforeEach: typeof test.beforeEach.cb.serial.skip;
|
|
778
1253
|
export const afterEach: typeof test.afterEach.cb.serial.skip;
|
|
1254
|
+
export const always: typeof test.always.cb.serial.skip;
|
|
779
1255
|
}
|
|
780
1256
|
export namespace test.cb.serial.todo {
|
|
781
1257
|
export const before: typeof test.before.cb.serial.todo;
|
|
@@ -783,6 +1259,7 @@ export namespace test.cb.serial.todo {
|
|
|
783
1259
|
export const failing: typeof test.cb.failing.serial.todo;
|
|
784
1260
|
export const beforeEach: typeof test.beforeEach.cb.serial.todo;
|
|
785
1261
|
export const afterEach: typeof test.afterEach.cb.serial.todo;
|
|
1262
|
+
export const always: typeof test.always.cb.serial.todo;
|
|
786
1263
|
}
|
|
787
1264
|
export namespace test.cb.skip {
|
|
788
1265
|
export const serial: typeof test.cb.serial.skip;
|
|
@@ -791,6 +1268,7 @@ export namespace test.cb.skip {
|
|
|
791
1268
|
export const failing: typeof test.cb.failing.skip;
|
|
792
1269
|
export const beforeEach: typeof test.beforeEach.cb.skip;
|
|
793
1270
|
export const afterEach: typeof test.afterEach.cb.skip;
|
|
1271
|
+
export const always: typeof test.always.cb.skip;
|
|
794
1272
|
}
|
|
795
1273
|
export namespace test.cb.todo {
|
|
796
1274
|
export const serial: typeof test.cb.serial.todo;
|
|
@@ -799,43 +1277,54 @@ export namespace test.cb.todo {
|
|
|
799
1277
|
export const failing: typeof test.cb.failing.todo;
|
|
800
1278
|
export const beforeEach: typeof test.beforeEach.cb.todo;
|
|
801
1279
|
export const afterEach: typeof test.afterEach.cb.todo;
|
|
1280
|
+
export const always: typeof test.always.cb.todo;
|
|
802
1281
|
}
|
|
803
1282
|
export namespace test.cb.failing {
|
|
804
1283
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
805
1284
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1285
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1286
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
806
1287
|
export const before: typeof test.before.cb.failing;
|
|
807
1288
|
export const after: typeof test.after.cb.failing;
|
|
808
1289
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
809
1290
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
810
|
-
export function
|
|
811
|
-
export function
|
|
1291
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1292
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1293
|
+
export function todo(name: string): void;
|
|
812
1294
|
export function only(name: string, implementation: ContextualCallbackTest): void;
|
|
813
1295
|
export function only(implementation: ContextualCallbackTest): void;
|
|
1296
|
+
export function only(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1297
|
+
export function only(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
814
1298
|
export const beforeEach: typeof test.beforeEach.cb.failing;
|
|
815
1299
|
export const afterEach: typeof test.afterEach.cb.failing;
|
|
1300
|
+
export const always: typeof test.always.cb.failing;
|
|
816
1301
|
}
|
|
817
1302
|
export namespace test.cb.failing.serial {
|
|
818
1303
|
export const before: typeof test.before.cb.failing.serial;
|
|
819
1304
|
export const after: typeof test.after.cb.failing.serial;
|
|
820
1305
|
export function skip(name: string, implementation: ContextualCallbackTest): void;
|
|
821
1306
|
export function skip(implementation: ContextualCallbackTest): void;
|
|
822
|
-
export function
|
|
823
|
-
export function
|
|
1307
|
+
export function skip(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1308
|
+
export function skip(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1309
|
+
export function todo(name: string): void;
|
|
824
1310
|
export const only: typeof test.cb.failing.only.serial;
|
|
825
1311
|
export const beforeEach: typeof test.beforeEach.cb.failing.serial;
|
|
826
1312
|
export const afterEach: typeof test.afterEach.cb.failing.serial;
|
|
1313
|
+
export const always: typeof test.always.cb.failing.serial;
|
|
827
1314
|
}
|
|
828
1315
|
export namespace test.cb.failing.serial.skip {
|
|
829
1316
|
export const before: typeof test.before.cb.failing.serial.skip;
|
|
830
1317
|
export const after: typeof test.after.cb.failing.serial.skip;
|
|
831
1318
|
export const beforeEach: typeof test.beforeEach.cb.failing.serial.skip;
|
|
832
1319
|
export const afterEach: typeof test.afterEach.cb.failing.serial.skip;
|
|
1320
|
+
export const always: typeof test.always.cb.failing.serial.skip;
|
|
833
1321
|
}
|
|
834
1322
|
export namespace test.cb.failing.serial.todo {
|
|
835
1323
|
export const before: typeof test.before.cb.failing.serial.todo;
|
|
836
1324
|
export const after: typeof test.after.cb.failing.serial.todo;
|
|
837
1325
|
export const beforeEach: typeof test.beforeEach.cb.failing.serial.todo;
|
|
838
1326
|
export const afterEach: typeof test.afterEach.cb.failing.serial.todo;
|
|
1327
|
+
export const always: typeof test.always.cb.failing.serial.todo;
|
|
839
1328
|
}
|
|
840
1329
|
export namespace test.cb.failing.skip {
|
|
841
1330
|
export const serial: typeof test.cb.failing.serial.skip;
|
|
@@ -843,6 +1332,7 @@ export namespace test.cb.failing.skip {
|
|
|
843
1332
|
export const after: typeof test.after.cb.failing.skip;
|
|
844
1333
|
export const beforeEach: typeof test.beforeEach.cb.failing.skip;
|
|
845
1334
|
export const afterEach: typeof test.afterEach.cb.failing.skip;
|
|
1335
|
+
export const always: typeof test.always.cb.failing.skip;
|
|
846
1336
|
}
|
|
847
1337
|
export namespace test.cb.failing.todo {
|
|
848
1338
|
export const serial: typeof test.cb.failing.serial.todo;
|
|
@@ -850,16 +1340,146 @@ export namespace test.cb.failing.todo {
|
|
|
850
1340
|
export const after: typeof test.after.cb.failing.todo;
|
|
851
1341
|
export const beforeEach: typeof test.beforeEach.cb.failing.todo;
|
|
852
1342
|
export const afterEach: typeof test.afterEach.cb.failing.todo;
|
|
1343
|
+
export const always: typeof test.always.cb.failing.todo;
|
|
853
1344
|
}
|
|
854
1345
|
export namespace test.cb.failing.only {
|
|
855
1346
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
856
1347
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1348
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1349
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
857
1350
|
}
|
|
858
1351
|
export namespace test.cb.only {
|
|
859
1352
|
export function serial(name: string, implementation: ContextualCallbackTest): void;
|
|
860
1353
|
export function serial(implementation: ContextualCallbackTest): void;
|
|
1354
|
+
export function serial(name: string, implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
1355
|
+
export function serial(implementation: Macros<ContextualCallbackTestContext>, ...args: any[]): void;
|
|
861
1356
|
export const failing: typeof test.cb.failing.only;
|
|
862
1357
|
}
|
|
863
1358
|
export namespace test.cb.only.serial {
|
|
864
1359
|
export const failing: typeof test.cb.failing.only.serial;
|
|
865
1360
|
}
|
|
1361
|
+
export namespace test.always {
|
|
1362
|
+
export const after: typeof test.after.always;
|
|
1363
|
+
export const afterEach: typeof test.afterEach.always;
|
|
1364
|
+
}
|
|
1365
|
+
export namespace test.always.serial {
|
|
1366
|
+
export const after: typeof test.after.always.serial;
|
|
1367
|
+
export const failing: typeof test.always.failing.serial;
|
|
1368
|
+
export const afterEach: typeof test.afterEach.always.serial;
|
|
1369
|
+
export const cb: typeof test.always.cb.serial;
|
|
1370
|
+
}
|
|
1371
|
+
export namespace test.always.serial.skip {
|
|
1372
|
+
export const after: typeof test.after.always.serial.skip;
|
|
1373
|
+
export const failing: typeof test.always.failing.serial.skip;
|
|
1374
|
+
export const afterEach: typeof test.afterEach.always.serial.skip;
|
|
1375
|
+
export const cb: typeof test.always.cb.serial.skip;
|
|
1376
|
+
}
|
|
1377
|
+
export namespace test.always.serial.todo {
|
|
1378
|
+
export const after: typeof test.after.always.serial.todo;
|
|
1379
|
+
export const failing: typeof test.always.failing.serial.todo;
|
|
1380
|
+
export const afterEach: typeof test.afterEach.always.serial.todo;
|
|
1381
|
+
export const cb: typeof test.always.cb.serial.todo;
|
|
1382
|
+
}
|
|
1383
|
+
export namespace test.always.skip {
|
|
1384
|
+
export const serial: typeof test.always.serial.skip;
|
|
1385
|
+
export const after: typeof test.after.always.skip;
|
|
1386
|
+
export const failing: typeof test.always.failing.skip;
|
|
1387
|
+
export const afterEach: typeof test.afterEach.always.skip;
|
|
1388
|
+
export const cb: typeof test.always.cb.skip;
|
|
1389
|
+
}
|
|
1390
|
+
export namespace test.always.todo {
|
|
1391
|
+
export const serial: typeof test.always.serial.todo;
|
|
1392
|
+
export const after: typeof test.after.always.todo;
|
|
1393
|
+
export const failing: typeof test.always.failing.todo;
|
|
1394
|
+
export const afterEach: typeof test.afterEach.always.todo;
|
|
1395
|
+
export const cb: typeof test.always.cb.todo;
|
|
1396
|
+
}
|
|
1397
|
+
export namespace test.always.failing {
|
|
1398
|
+
export const after: typeof test.after.always.failing;
|
|
1399
|
+
export const afterEach: typeof test.afterEach.always.failing;
|
|
1400
|
+
export const cb: typeof test.always.cb.failing;
|
|
1401
|
+
}
|
|
1402
|
+
export namespace test.always.failing.serial {
|
|
1403
|
+
export const after: typeof test.after.always.failing.serial;
|
|
1404
|
+
export const afterEach: typeof test.afterEach.always.failing.serial;
|
|
1405
|
+
export const cb: typeof test.always.cb.failing.serial;
|
|
1406
|
+
}
|
|
1407
|
+
export namespace test.always.failing.serial.skip {
|
|
1408
|
+
export const after: typeof test.after.always.failing.serial.skip;
|
|
1409
|
+
export const afterEach: typeof test.afterEach.always.failing.serial.skip;
|
|
1410
|
+
export const cb: typeof test.always.cb.failing.serial.skip;
|
|
1411
|
+
}
|
|
1412
|
+
export namespace test.always.failing.serial.todo {
|
|
1413
|
+
export const after: typeof test.after.always.failing.serial.todo;
|
|
1414
|
+
export const afterEach: typeof test.afterEach.always.failing.serial.todo;
|
|
1415
|
+
export const cb: typeof test.always.cb.failing.serial.todo;
|
|
1416
|
+
}
|
|
1417
|
+
export namespace test.always.failing.skip {
|
|
1418
|
+
export const serial: typeof test.always.failing.serial.skip;
|
|
1419
|
+
export const after: typeof test.after.always.failing.skip;
|
|
1420
|
+
export const afterEach: typeof test.afterEach.always.failing.skip;
|
|
1421
|
+
export const cb: typeof test.always.cb.failing.skip;
|
|
1422
|
+
}
|
|
1423
|
+
export namespace test.always.failing.todo {
|
|
1424
|
+
export const serial: typeof test.always.failing.serial.todo;
|
|
1425
|
+
export const after: typeof test.after.always.failing.todo;
|
|
1426
|
+
export const afterEach: typeof test.afterEach.always.failing.todo;
|
|
1427
|
+
export const cb: typeof test.always.cb.failing.todo;
|
|
1428
|
+
}
|
|
1429
|
+
export namespace test.always.cb {
|
|
1430
|
+
export const after: typeof test.after.always.cb;
|
|
1431
|
+
export const afterEach: typeof test.afterEach.always.cb;
|
|
1432
|
+
}
|
|
1433
|
+
export namespace test.always.cb.serial {
|
|
1434
|
+
export const after: typeof test.after.always.cb.serial;
|
|
1435
|
+
export const failing: typeof test.always.cb.failing.serial;
|
|
1436
|
+
export const afterEach: typeof test.afterEach.always.cb.serial;
|
|
1437
|
+
}
|
|
1438
|
+
export namespace test.always.cb.serial.skip {
|
|
1439
|
+
export const after: typeof test.after.always.cb.serial.skip;
|
|
1440
|
+
export const failing: typeof test.always.cb.failing.serial.skip;
|
|
1441
|
+
export const afterEach: typeof test.afterEach.always.cb.serial.skip;
|
|
1442
|
+
}
|
|
1443
|
+
export namespace test.always.cb.serial.todo {
|
|
1444
|
+
export const after: typeof test.after.always.cb.serial.todo;
|
|
1445
|
+
export const failing: typeof test.always.cb.failing.serial.todo;
|
|
1446
|
+
export const afterEach: typeof test.afterEach.always.cb.serial.todo;
|
|
1447
|
+
}
|
|
1448
|
+
export namespace test.always.cb.skip {
|
|
1449
|
+
export const serial: typeof test.always.cb.serial.skip;
|
|
1450
|
+
export const after: typeof test.after.always.cb.skip;
|
|
1451
|
+
export const failing: typeof test.always.cb.failing.skip;
|
|
1452
|
+
export const afterEach: typeof test.afterEach.always.cb.skip;
|
|
1453
|
+
}
|
|
1454
|
+
export namespace test.always.cb.todo {
|
|
1455
|
+
export const serial: typeof test.always.cb.serial.todo;
|
|
1456
|
+
export const after: typeof test.after.always.cb.todo;
|
|
1457
|
+
export const failing: typeof test.always.cb.failing.todo;
|
|
1458
|
+
export const afterEach: typeof test.afterEach.always.cb.todo;
|
|
1459
|
+
}
|
|
1460
|
+
export namespace test.always.cb.failing {
|
|
1461
|
+
export const after: typeof test.after.always.cb.failing;
|
|
1462
|
+
export const afterEach: typeof test.afterEach.always.cb.failing;
|
|
1463
|
+
}
|
|
1464
|
+
export namespace test.always.cb.failing.serial {
|
|
1465
|
+
export const after: typeof test.after.always.cb.failing.serial;
|
|
1466
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.serial;
|
|
1467
|
+
}
|
|
1468
|
+
export namespace test.always.cb.failing.serial.skip {
|
|
1469
|
+
export const after: typeof test.after.always.cb.failing.serial.skip;
|
|
1470
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.serial.skip;
|
|
1471
|
+
}
|
|
1472
|
+
export namespace test.always.cb.failing.serial.todo {
|
|
1473
|
+
export const after: typeof test.after.always.cb.failing.serial.todo;
|
|
1474
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.serial.todo;
|
|
1475
|
+
}
|
|
1476
|
+
export namespace test.always.cb.failing.skip {
|
|
1477
|
+
export const serial: typeof test.always.cb.failing.serial.skip;
|
|
1478
|
+
export const after: typeof test.after.always.cb.failing.skip;
|
|
1479
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.skip;
|
|
1480
|
+
}
|
|
1481
|
+
export namespace test.always.cb.failing.todo {
|
|
1482
|
+
export const serial: typeof test.always.cb.failing.serial.todo;
|
|
1483
|
+
export const after: typeof test.after.always.cb.failing.todo;
|
|
1484
|
+
export const afterEach: typeof test.afterEach.always.cb.failing.todo;
|
|
1485
|
+
}
|