UNPKG

@push.rocks/tapbundle

Version:

A comprehensive testing automation library that provides a wide range of utilities and tools for TAP (Test Anything Protocol) based testing, especially suitable for projects using tapbuffer.

9 lines (8 loc) 199 B
export interface ITapWrapOptions { before: () => Promise<any>; after: () => {}; } export declare class TapWrap { options: ITapWrapOptions; constructor(optionsArg: ITapWrapOptions); }