fix(core): update

This commit is contained in:
2020-02-02 20:10:42 +00:00
parent 459f4b24aa
commit 5a2b72fb02
8 changed files with 588 additions and 15 deletions

View File

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