10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
|
import { expect, expectAsync, tap, webhelpers } from '@push.rocks/tapbundle';
|
||
|
|
||
|
import * as socialioCatalog from '../ts_web/index.js';
|
||
|
|
||
|
tap.test('', async () => {
|
||
|
const sioFab: socialioCatalog.SioFab = webhelpers.fixture(webhelpers.html`<sio-fab></sio-fab>`);
|
||
|
});
|
||
|
|
||
|
tap.start();
|