diff --git a/test/test.browser.ts b/test/test.browser.ts index 81047e1..06df5af 100644 --- a/test/test.browser.ts +++ b/test/test.browser.ts @@ -1,12 +1,10 @@ import { tap, expect, webhelpers } from '@pushrocks/tapbundle'; -webhelpers.enable(); -const html = webhelpers.html; import * as deesCatalog from '../ts_web'; tap.test('should create a working button', async () => { const button: deesCatalog.DeesButton = await webhelpers.fixture( - html`` + webhelpers.html`` ); expect(button).to.be.instanceOf(deesCatalog.DeesButton); });