9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import { expect, tap } from '@push.rocks/tapbundle';
|
|
import * as interfaces from '../ts/index.js';
|
|
|
|
tap.test('first test', async () => {
|
|
interfaces;
|
|
});
|
|
|
|
tap.start();
|