fix(core): update

This commit is contained in:
2020-03-15 16:36:25 +00:00
parent 1e8ab2d7a2
commit b2dbc9160b
5 changed files with 274 additions and 370 deletions

View File

@ -1,5 +1,9 @@
import { tap, expect } from '../ts/index';
tap.preTask('hi there', async () => {
console.log('this is a pretask');
})
const test1 = tap.test('my first test -> expect true to be true', async () => {
return expect(true).to.be.true;
});