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.

14 lines (11 loc) 279 B
import * as plugins from './tapbundle.plugins.js'; export interface ITapWrapOptions { before: () => Promise<any>; after: () => {}; } export class TapWrap { public options: ITapWrapOptions; constructor(optionsArg: ITapWrapOptions) { this.options = optionsArg; } }