1 | export interface Subscribable {
|
2 | subscribe(observer: {
|
3 | error(err: any): void;
|
4 | complete(): void;
|
5 | }): void;
|
6 | }
|
7 |
|
8 | export type Constructor = (new (...args: any[]) => any);
|
9 |
|
10 | /** Specify one or more expectations the thrown error must satisfy. */
|
11 | export type ThrowsExpectation = {
|
12 | /** The thrown error must have a code that equals the given string or number. */
|
13 | code?: string | number;
|
14 |
|
15 | /** The thrown error must be an instance of this constructor. */
|
16 | instanceOf?: Constructor;
|
17 |
|
18 | /** The thrown error must be strictly equal to this value. */
|
19 | is?: Error;
|
20 |
|
21 | /** The thrown error must have a message that equals the given string, or matches the regular expression. */
|
22 | message?: string | RegExp;
|
23 |
|
24 | /** The thrown error must have a name that equals the given string. */
|
25 | name?: string;
|
26 | };
|
27 |
|
28 | export type CommitDiscardOptions = {
|
29 | /**
|
30 | * Whether the logs should be included in those of the parent test.
|
31 | */
|
32 | retainLogs?: boolean;
|
33 | };
|
34 |
|
35 | /** Options that can be passed to the `t.snapshot()` assertion. */
|
36 | export type SnapshotOptions = {
|
37 | /** If provided and not an empty string, used to select the snapshot to compare the `expected` value against. */
|
38 | id?: string;
|
39 | };
|
40 |
|
41 | export interface Assertions {
|
42 | /** Assert that `actual` is [truthy](https:
|
43 | assert: AssertAssertion;
|
44 |
|
45 |
|
46 | deepEqual: DeepEqualAssertion;
|
47 |
|
48 |
|
49 | fail: FailAssertion;
|
50 |
|
51 |
|
52 | false: FalseAssertion;
|
53 |
|
54 |
|
55 | falsy: FalsyAssertion;
|
56 |
|
57 | |
58 |
|
59 |
|
60 |
|
61 | is: IsAssertion;
|
62 |
|
63 | |
64 |
|
65 |
|
66 |
|
67 | not: NotAssertion;
|
68 |
|
69 |
|
70 | notDeepEqual: NotDeepEqualAssertion;
|
71 |
|
72 |
|
73 | notRegex: NotRegexAssertion;
|
74 |
|
75 |
|
76 | notThrows: NotThrowsAssertion;
|
77 |
|
78 |
|
79 | notThrowsAsync: NotThrowsAsyncAssertion;
|
80 |
|
81 |
|
82 | pass: PassAssertion;
|
83 |
|
84 |
|
85 | regex: RegexAssertion;
|
86 |
|
87 | |
88 |
|
89 |
|
90 |
|
91 |
|
92 | snapshot: SnapshotAssertion;
|
93 |
|
94 | |
95 |
|
96 |
|
97 | throws: ThrowsAssertion;
|
98 |
|
99 | |
100 |
|
101 |
|
102 |
|
103 | throwsAsync: ThrowsAsyncAssertion;
|
104 |
|
105 |
|
106 | true: TrueAssertion;
|
107 |
|
108 |
|
109 | truthy: TruthyAssertion;
|
110 | }
|
111 |
|
112 | export interface AssertAssertion {
|
113 |
|
114 | (actual: any, message?: string): void;
|
115 |
|
116 |
|
117 | skip(actual: any, message?: string): void;
|
118 | }
|
119 |
|
120 | export interface DeepEqualAssertion {
|
121 |
|
122 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
123 |
|
124 |
|
125 | skip(actual: any, expected: any, message?: string): void;
|
126 | }
|
127 |
|
128 | export interface FailAssertion {
|
129 |
|
130 | (message?: string): void;
|
131 |
|
132 |
|
133 | skip(message?: string): void;
|
134 | }
|
135 |
|
136 | export interface FalseAssertion {
|
137 |
|
138 | (actual: any, message?: string): void;
|
139 |
|
140 |
|
141 | skip(actual: any, message?: string): void;
|
142 | }
|
143 |
|
144 | export interface FalsyAssertion {
|
145 |
|
146 | (actual: any, message?: string): void;
|
147 |
|
148 |
|
149 | skip(actual: any, message?: string): void;
|
150 | }
|
151 |
|
152 | export interface IsAssertion {
|
153 | |
154 |
|
155 |
|
156 |
|
157 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
158 |
|
159 |
|
160 | skip(actual: any, expected: any, message?: string): void;
|
161 | }
|
162 |
|
163 | export interface NotAssertion {
|
164 | |
165 |
|
166 |
|
167 |
|
168 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
169 |
|
170 |
|
171 | skip(actual: any, expected: any, message?: string): void;
|
172 | }
|
173 |
|
174 | export interface NotDeepEqualAssertion {
|
175 |
|
176 | <ValueType = any>(actual: ValueType, expected: ValueType, message?: string): void;
|
177 |
|
178 |
|
179 | skip(actual: any, expected: any, message?: string): void;
|
180 | }
|
181 |
|
182 | export interface NotRegexAssertion {
|
183 |
|
184 | (string: string, regex: RegExp, message?: string): void;
|
185 |
|
186 |
|
187 | skip(string: string, regex: RegExp, message?: string): void;
|
188 | }
|
189 |
|
190 | export interface NotThrowsAssertion {
|
191 |
|
192 | (fn: () => any, message?: string): void;
|
193 |
|
194 |
|
195 | skip(fn: () => any, message?: string): void;
|
196 | }
|
197 |
|
198 | export interface NotThrowsAsyncAssertion {
|
199 |
|
200 | (fn: () => PromiseLike<any>, message?: string): Promise<void>;
|
201 |
|
202 |
|
203 | (promise: PromiseLike<any>, message?: string): Promise<void>;
|
204 |
|
205 |
|
206 | skip(nonThrower: any, message?: string): void;
|
207 | }
|
208 |
|
209 | export interface PassAssertion {
|
210 |
|
211 | (message?: string): void;
|
212 |
|
213 |
|
214 | skip(message?: string): void;
|
215 | }
|
216 |
|
217 | export interface RegexAssertion {
|
218 |
|
219 | (string: string, regex: RegExp, message?: string): void;
|
220 |
|
221 |
|
222 | skip(string: string, regex: RegExp, message?: string): void;
|
223 | }
|
224 |
|
225 | export interface SnapshotAssertion {
|
226 | |
227 |
|
228 |
|
229 |
|
230 |
|
231 | (expected: any, message?: string): void;
|
232 |
|
233 | |
234 |
|
235 |
|
236 |
|
237 |
|
238 | (expected: any, options: SnapshotOptions, message?: string): void;
|
239 |
|
240 |
|
241 | skip(expected: any, message?: string): void;
|
242 |
|
243 |
|
244 | skip(expected: any, options: SnapshotOptions, message?: string): void;
|
245 | }
|
246 |
|
247 | export interface ThrowsAssertion {
|
248 | |
249 |
|
250 |
|
251 |
|
252 | <ThrownError extends Error>(fn: () => any, expectations?: ThrowsExpectation | null, message?: string): ThrownError;
|
253 |
|
254 |
|
255 | skip(fn: () => any, expectations?: any, message?: string): void;
|
256 | }
|
257 |
|
258 | export interface ThrowsAsyncAssertion {
|
259 | |
260 |
|
261 |
|
262 |
|
263 | <ThrownError extends Error>(fn: () => PromiseLike<any>, expectations?: null, message?: string): Promise<ThrownError>;
|
264 |
|
265 | |
266 |
|
267 |
|
268 |
|
269 | <ThrownError extends Error>(fn: () => PromiseLike<any>, expectations: ThrowsExpectation, message?: string): Promise<ThrownError>;
|
270 |
|
271 | |
272 |
|
273 |
|
274 |
|
275 | <ThrownError extends Error>(promise: PromiseLike<any>, expectations?: null, message?: string): Promise<ThrownError>;
|
276 |
|
277 | |
278 |
|
279 |
|
280 |
|
281 | <ThrownError extends Error>(promise: PromiseLike<any>, expectations: ThrowsExpectation, message?: string): Promise<ThrownError>;
|
282 |
|
283 |
|
284 | skip(thrower: any, expectations?: any, message?: string): void;
|
285 | }
|
286 |
|
287 | export interface TrueAssertion {
|
288 |
|
289 | (actual: any, message?: string): void;
|
290 |
|
291 |
|
292 | skip(actual: any, message?: string): void;
|
293 | }
|
294 |
|
295 | export interface TruthyAssertion {
|
296 |
|
297 | (actual: any, message?: string): void;
|
298 |
|
299 |
|
300 | skip(actual: any, message?: string): void;
|
301 | }
|
302 |
|
303 |
|
304 | export interface ExecutionContext<Context = unknown> extends Assertions {
|
305 |
|
306 | context: Context;
|
307 |
|
308 |
|
309 | readonly title: string;
|
310 |
|
311 |
|
312 | readonly passed: boolean;
|
313 |
|
314 | log: LogFn;
|
315 | plan: PlanFn;
|
316 | teardown: TeardownFn;
|
317 | timeout: TimeoutFn;
|
318 | try: TryFn<Context>;
|
319 | }
|
320 |
|
321 | export interface LogFn {
|
322 |
|
323 | (...values: any[]): void;
|
324 |
|
325 |
|
326 | skip(...values: any[]): void;
|
327 | }
|
328 |
|
329 | export interface PlanFn {
|
330 | |
331 |
|
332 |
|
333 |
|
334 | (count: number): void;
|
335 |
|
336 |
|
337 | skip(count: number): void;
|
338 | }
|
339 |
|
340 | export interface TimeoutFn {
|
341 | |
342 |
|
343 |
|
344 |
|
345 | (ms: number): void;
|
346 | }
|
347 |
|
348 | export interface TeardownFn {
|
349 |
|
350 | (fn: () => void): void;
|
351 | }
|
352 |
|
353 | export interface TryFn<Context = unknown> {
|
354 | |
355 |
|
356 |
|
357 |
|
358 |
|
359 | <Args extends any[]>(title: string, fn: EitherMacro<Args, Context>, ...args: Args): Promise<TryResult>;
|
360 |
|
361 | |
362 |
|
363 |
|
364 |
|
365 |
|
366 | <Args extends any[]>(title: string, fn: [EitherMacro<Args, Context>, ...Array<EitherMacro<Args, Context>>], ...args: Args): Promise<TryResult[]>;
|
367 |
|
368 | |
369 |
|
370 |
|
371 |
|
372 | <Args extends any[]>(fn: EitherMacro<Args, Context>, ...args: Args): Promise<TryResult>;
|
373 |
|
374 | |
375 |
|
376 |
|
377 |
|
378 | <Args extends any[]>(fn: [EitherMacro<Args, Context>, ...Array<EitherMacro<Args, Context>>], ...args: Args): Promise<TryResult[]>;
|
379 | }
|
380 |
|
381 | export interface AssertionError extends Error {}
|
382 |
|
383 | export interface TryResult {
|
384 | |
385 |
|
386 |
|
387 | title: string;
|
388 |
|
389 | |
390 |
|
391 |
|
392 | passed: boolean;
|
393 |
|
394 | |
395 |
|
396 |
|
397 | errors: AssertionError[];
|
398 |
|
399 | |
400 |
|
401 |
|
402 | logs: string[];
|
403 |
|
404 | |
405 |
|
406 |
|
407 |
|
408 | commit(options?: CommitDiscardOptions): void;
|
409 |
|
410 | |
411 |
|
412 |
|
413 | discard(options?: CommitDiscardOptions): void;
|
414 | }
|
415 |
|
416 |
|
417 | export interface CbExecutionContext<Context = unknown> extends ExecutionContext<Context> {
|
418 | |
419 |
|
420 |
|
421 |
|
422 | end(error?: any): void;
|
423 | }
|
424 |
|
425 | export type ImplementationResult = PromiseLike<void> | Subscribable | void;
|
426 | export type Implementation<Context = unknown> = (t: ExecutionContext<Context>) => ImplementationResult;
|
427 | export type CbImplementation<Context = unknown> = (t: CbExecutionContext<Context>) => ImplementationResult;
|
428 |
|
429 |
|
430 | export type UntitledMacro<Args extends any[], Context = unknown> = (t: ExecutionContext<Context>, ...args: Args) => ImplementationResult;
|
431 |
|
432 |
|
433 | export type Macro<Args extends any[], Context = unknown> = UntitledMacro<Args, Context> & {
|
434 | |
435 |
|
436 |
|
437 |
|
438 | title?: (providedTitle: string | undefined, ...args: Args) => string;
|
439 | };
|
440 |
|
441 | export type EitherMacro<Args extends any[], Context> = Macro<Args, Context> | UntitledMacro<Args, Context>;
|
442 |
|
443 |
|
444 | export type OneOrMoreMacros<Args extends any[], Context> = EitherMacro<Args, Context> | [EitherMacro<Args, Context>, ...Array<EitherMacro<Args, Context>>];
|
445 |
|
446 |
|
447 | export type UntitledCbMacro<Args extends any[], Context = unknown> = (t: CbExecutionContext<Context>, ...args: Args) => ImplementationResult;
|
448 |
|
449 |
|
450 | export type CbMacro<Args extends any[], Context = unknown> = UntitledCbMacro<Args, Context> & {
|
451 | title?: (providedTitle: string | undefined, ...args: Args) => string;
|
452 | };
|
453 |
|
454 | export type EitherCbMacro<Args extends any[], Context> = CbMacro<Args, Context> | UntitledCbMacro<Args, Context>;
|
455 |
|
456 |
|
457 | export type OneOrMoreCbMacros<Args extends any[], Context> = EitherCbMacro<Args, Context> | [EitherCbMacro<Args, Context>, ...Array<EitherCbMacro<Args, Context>>];
|
458 |
|
459 | export interface TestInterface<Context = unknown> {
|
460 |
|
461 | (title: string, implementation: Implementation<Context>): void;
|
462 |
|
463 |
|
464 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
465 |
|
466 |
|
467 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
468 |
|
469 |
|
470 | after: AfterInterface<Context>;
|
471 |
|
472 |
|
473 | afterEach: AfterInterface<Context>;
|
474 |
|
475 |
|
476 | before: BeforeInterface<Context>;
|
477 |
|
478 |
|
479 | beforeEach: BeforeInterface<Context>;
|
480 |
|
481 |
|
482 | cb: CbInterface<Context>;
|
483 |
|
484 |
|
485 | failing: FailingInterface<Context>;
|
486 |
|
487 |
|
488 | serial: SerialInterface<Context>;
|
489 |
|
490 | only: OnlyInterface<Context>;
|
491 | skip: SkipInterface<Context>;
|
492 | todo: TodoDeclaration;
|
493 | meta: MetaInterface;
|
494 | }
|
495 |
|
496 | export interface AfterInterface<Context = unknown> {
|
497 |
|
498 | (implementation: Implementation<Context>): void;
|
499 |
|
500 |
|
501 | (title: string, implementation: Implementation<Context>): void;
|
502 |
|
503 |
|
504 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
505 |
|
506 |
|
507 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
508 |
|
509 |
|
510 | always: AlwaysInterface<Context>;
|
511 |
|
512 |
|
513 | cb: HookCbInterface<Context>;
|
514 |
|
515 | skip: HookSkipInterface<Context>;
|
516 | }
|
517 |
|
518 | export interface AlwaysInterface<Context = unknown> {
|
519 |
|
520 | (implementation: Implementation<Context>): void;
|
521 |
|
522 |
|
523 | (title: string, implementation: Implementation<Context>): void;
|
524 |
|
525 |
|
526 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
527 |
|
528 |
|
529 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
530 |
|
531 |
|
532 | cb: HookCbInterface<Context>;
|
533 |
|
534 | skip: HookSkipInterface<Context>;
|
535 | }
|
536 |
|
537 | export interface BeforeInterface<Context = unknown> {
|
538 |
|
539 | (implementation: Implementation<Context>): void;
|
540 |
|
541 |
|
542 | (title: string, implementation: Implementation<Context>): void;
|
543 |
|
544 |
|
545 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
546 |
|
547 |
|
548 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
549 |
|
550 |
|
551 | cb: HookCbInterface<Context>;
|
552 |
|
553 | skip: HookSkipInterface<Context>;
|
554 | }
|
555 |
|
556 | export interface CbInterface<Context = unknown> {
|
557 |
|
558 | (title: string, implementation: CbImplementation<Context>): void;
|
559 |
|
560 | |
561 |
|
562 |
|
563 |
|
564 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
565 |
|
566 | |
567 |
|
568 |
|
569 |
|
570 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
571 |
|
572 |
|
573 | failing: CbFailingInterface<Context>;
|
574 |
|
575 | only: CbOnlyInterface<Context>;
|
576 | skip: CbSkipInterface<Context>;
|
577 | }
|
578 |
|
579 | export interface CbFailingInterface<Context = unknown> {
|
580 |
|
581 | (title: string, implementation: CbImplementation<Context>): void;
|
582 |
|
583 | |
584 |
|
585 |
|
586 |
|
587 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
588 |
|
589 | |
590 |
|
591 |
|
592 |
|
593 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
594 |
|
595 | only: CbOnlyInterface<Context>;
|
596 | skip: CbSkipInterface<Context>;
|
597 | }
|
598 |
|
599 | export interface CbOnlyInterface<Context = unknown> {
|
600 | |
601 |
|
602 |
|
603 | (title: string, implementation: CbImplementation<Context>): void;
|
604 |
|
605 | |
606 |
|
607 |
|
608 |
|
609 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
610 |
|
611 | |
612 |
|
613 |
|
614 |
|
615 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
616 | }
|
617 |
|
618 | export interface CbSkipInterface<Context = unknown> {
|
619 |
|
620 | (title: string, implementation: CbImplementation<Context>): void;
|
621 |
|
622 |
|
623 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
624 |
|
625 |
|
626 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
627 | }
|
628 |
|
629 | export interface FailingInterface<Context = unknown> {
|
630 |
|
631 | (title: string, implementation: Implementation<Context>): void;
|
632 |
|
633 | |
634 |
|
635 |
|
636 |
|
637 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
638 |
|
639 | |
640 |
|
641 |
|
642 |
|
643 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
644 |
|
645 | only: OnlyInterface<Context>;
|
646 | skip: SkipInterface<Context>;
|
647 | }
|
648 |
|
649 | export interface HookCbInterface<Context = unknown> {
|
650 |
|
651 | (implementation: CbImplementation<Context>): void;
|
652 |
|
653 |
|
654 | (title: string, implementation: CbImplementation<Context>): void;
|
655 |
|
656 | |
657 |
|
658 |
|
659 |
|
660 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
661 |
|
662 | |
663 |
|
664 |
|
665 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
666 |
|
667 | skip: HookCbSkipInterface<Context>;
|
668 | }
|
669 |
|
670 | export interface HookCbSkipInterface<Context = unknown> {
|
671 |
|
672 | (implementation: CbImplementation<Context>): void;
|
673 |
|
674 |
|
675 | (title: string, implementation: CbImplementation<Context>): void;
|
676 |
|
677 |
|
678 | <T extends any[]>(title: string, macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
679 |
|
680 |
|
681 | <T extends any[]>(macros: OneOrMoreCbMacros<T, Context>, ...rest: T): void;
|
682 | }
|
683 |
|
684 | export interface HookSkipInterface<Context = unknown> {
|
685 |
|
686 | (implementation: Implementation<Context>): void;
|
687 |
|
688 |
|
689 | (title: string, implementation: Implementation<Context>): void;
|
690 |
|
691 |
|
692 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
693 |
|
694 |
|
695 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
696 | }
|
697 |
|
698 | export interface OnlyInterface<Context = unknown> {
|
699 |
|
700 | (title: string, implementation: Implementation<Context>): void;
|
701 |
|
702 | |
703 |
|
704 |
|
705 |
|
706 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
707 |
|
708 | |
709 |
|
710 |
|
711 |
|
712 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
713 | }
|
714 |
|
715 | export interface SerialInterface<Context = unknown> {
|
716 |
|
717 | (title: string, implementation: Implementation<Context>): void;
|
718 |
|
719 |
|
720 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
721 |
|
722 | |
723 |
|
724 |
|
725 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
726 |
|
727 |
|
728 | after: AfterInterface<Context>;
|
729 |
|
730 |
|
731 | afterEach: AfterInterface<Context>;
|
732 |
|
733 |
|
734 | before: BeforeInterface<Context>;
|
735 |
|
736 |
|
737 | beforeEach: BeforeInterface<Context>;
|
738 |
|
739 |
|
740 | cb: CbInterface<Context>;
|
741 |
|
742 |
|
743 | failing: FailingInterface<Context>;
|
744 |
|
745 | only: OnlyInterface<Context>;
|
746 | skip: SkipInterface<Context>;
|
747 | todo: TodoDeclaration;
|
748 | }
|
749 |
|
750 | export interface SkipInterface<Context = unknown> {
|
751 |
|
752 | (title: string, implementation: Implementation<Context>): void;
|
753 |
|
754 |
|
755 | <T extends any[]>(title: string, macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
756 |
|
757 |
|
758 | <T extends any[]>(macros: OneOrMoreMacros<T, Context>, ...rest: T): void;
|
759 | }
|
760 |
|
761 | export interface TodoDeclaration {
|
762 |
|
763 | (title: string): void;
|
764 | }
|
765 |
|
766 | export interface MetaInterface {
|
767 |
|
768 | file: string;
|
769 |
|
770 |
|
771 | snapshotDirectory: string;
|
772 | }
|
773 |
|
774 |
|
775 | declare const test: TestInterface;
|
776 |
|
777 |
|
778 | export default test;
|
779 |
|
780 |
|
781 | export const after: AfterInterface;
|
782 |
|
783 |
|
784 | export const afterEach: AfterInterface;
|
785 |
|
786 |
|
787 | export const before: BeforeInterface;
|
788 |
|
789 |
|
790 | export const beforeEach: BeforeInterface;
|
791 |
|
792 |
|
793 | export const cb: CbInterface;
|
794 |
|
795 |
|
796 | export const failing: FailingInterface;
|
797 |
|
798 |
|
799 | export const only: OnlyInterface;
|
800 |
|
801 |
|
802 | export const serial: SerialInterface;
|
803 |
|
804 |
|
805 | export const skip: SkipInterface;
|
806 |
|
807 |
|
808 | export const todo: TodoDeclaration;
|
809 |
|
810 |
|
811 | export const meta: MetaInterface;
|
812 |
|
\ | No newline at end of file |