smartjimp/test/test.ts

12 lines
299 B
TypeScript
Raw Normal View History

2020-02-01 17:24:41 +00:00
import { expect, tap } from '@pushrocks/tapbundle';
2020-02-02 20:10:42 +00:00
import * as smartjimp from '../ts/index';
let testSmartJimp: smartjimp.SmartJimp;
2020-02-01 17:24:41 +00:00
tap.test('first test', async () => {
2020-02-02 20:10:42 +00:00
testSmartJimp = new smartjimp.SmartJimp();
expect(testSmartJimp).to.be.instanceOf(smartjimp.SmartJimp);
});
2020-02-01 17:24:41 +00:00
2020-02-02 20:10:42 +00:00
tap.start();