fix(core): update

This commit is contained in:
2021-02-13 16:02:40 +00:00
parent 05defe6031
commit e3a756c775
6 changed files with 942 additions and 1262 deletions

View File

@ -1,6 +1,7 @@
import { tap, expect } from '../ts/index';
import { tap, expect, webhelpers } from '../ts/index';
tap.preTask('hi there', async () => {
const myElement = webhelpers.fixture(webhelpers.html`<div></div>`);
console.log('this is a pretask');
});

View File

@ -25,7 +25,7 @@ const test3 = tap.test(
const test4 = tap.test('my 4th test -> should fail', async (tools) => {
tools.allowFailure();
expect(false).to.be.true;
expect(false).to.be.false;
return 'hello';
});