smartrouter/test/test.ts

9 lines
202 B
TypeScript
Raw Normal View History

2020-06-01 20:51:36 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartrouter from '../ts/index';
tap.test('first test', async () => {
const router = new smartrouter.SmartRouter({});
});
tap.start();