dees-catalog/test/test.browser.ts
2021-03-06 15:59:52 +00:00

13 lines
363 B
TypeScript

import { tap, expect, webhelpers } from '@pushrocks/tapbundle';
import * as deesCatalog from '../ts_web';
tap.test('should create a working button', async () => {
const button: deesCatalog.DeesButton = await webhelpers.fixture(
webhelpers.html`<dees-button></dees-button>`
);
expect(button).to.be.instanceOf(deesCatalog.DeesButton);
});
tap.start();