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();