2018-06-28 21:34:41 +00:00
|
|
|
import { tap, expect } from '../dist/index';
|
2017-07-05 22:06:18 +00:00
|
|
|
|
|
|
|
let tapwrap = tap.wrap(async () => {
|
|
|
|
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();
|