tapbundle/test/test.tapwrap.ts
2017-07-06 00:06:18 +02:00

11 lines
192 B
TypeScript

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