dees-catalog/test/test.browser.ts

12 lines
392 B
TypeScript
Raw Normal View History

2021-03-06 15:48:02 +00:00
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`<dees-button ></dees-button>`)
expect(button).to.be.instanceOf(deesCatalog.DeesButton);
})
tap.start();