9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
import { expect, tap } from '@pushrocks/tapbundle';
|
|
import * as smartrouter from '../ts/index';
|
|
|
|
tap.test('first test', async () => {
|
|
const router = new smartrouter.SmartRouter({});
|
|
});
|
|
|
|
tap.start();
|