9 lines
193 B
TypeScript
9 lines
193 B
TypeScript
|
|
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
||
|
|
import * as smartregistry from '../ts/index.js';
|
||
|
|
|
||
|
|
tap.test('first test', async () => {
|
||
|
|
console.log(smartregistry);
|
||
|
|
});
|
||
|
|
|
||
|
|
tap.start();
|