2018-08-08 21:17:06 +00:00
|
|
|
import { tap, expect } from '../ts/index';
|
2017-07-05 22:06:18 +00:00
|
|
|
|
2019-04-10 10:56:17 +00:00
|
|
|
const tapwrap = tap.wrap(async () => {
|
2017-07-05 22:06:18 +00:00
|
|
|
tap.test('should do something', async () => {
|
2018-06-28 21:34:41 +00:00
|
|
|
console.log('test1');
|
|
|
|
});
|
|
|
|
tap.start();
|
|
|
|
});
|
2017-07-05 22:06:18 +00:00
|
|
|
|
2018-06-28 21:34:41 +00:00
|
|
|
tapwrap.run();
|