smartmail/test/test.ts

10 lines
264 B
TypeScript
Raw Normal View History

2018-09-29 21:57:25 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartmail from '../ts/index';
tap.test('first test', async () => {
const testSmartmail = new smartmail.Smartmail();
expect(testSmartmail).to.be.instanceof(smartmail.Smartmail);
});
tap.start();