tapbundle/test/test.tapwrap.ts
2019-04-10 12:56:17 +02:00

11 lines
198 B
TypeScript

import { tap, expect } from '../ts/index';
const tapwrap = tap.wrap(async () => {
tap.test('should do something', async () => {
console.log('test1');
});
tap.start();
});
tapwrap.run();