smartjimp/test/test.ts
2020-02-02 20:10:42 +00:00

12 lines
299 B
TypeScript

import { expect, tap } from '@pushrocks/tapbundle';
import * as smartjimp from '../ts/index';
let testSmartJimp: smartjimp.SmartJimp;
tap.test('first test', async () => {
testSmartJimp = new smartjimp.SmartJimp();
expect(testSmartJimp).to.be.instanceOf(smartjimp.SmartJimp);
});
tap.start();