tapbundle/test/test.tapwrap.ts

11 lines
190 B
TypeScript
Raw Normal View History

2017-10-09 15:01:10 +00:00
import { tap, expect } from '../ts/index'
2017-07-05 22:06:18 +00:00
let tapwrap = tap.wrap(async () => {
tap.test('should do something', async () => {
console.log('test1')
})
tap.start()
})
tapwrap.run()