smarturl/test/test.ts

12 lines
289 B
TypeScript
Raw Normal View History

2020-03-27 13:40:03 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as smarturl from '../ts/index';
2021-04-12 19:18:36 +00:00
let testSmarturl: smarturl.Smarturl;
2020-03-27 13:40:03 +00:00
tap.test('first test', async () => {
2021-04-12 19:18:36 +00:00
testSmarturl = new smarturl.Smarturl();
expect(testSmarturl).to.be.instanceOf(smarturl.Smarturl);
2020-03-27 13:40:03 +00:00
});
tap.start();