2020-02-01 17:24:41 +00:00
|
|
|
import { expect, tap } from '@pushrocks/tapbundle';
|
2023-01-09 17:17:33 +00:00
|
|
|
import * as smartjimp from '../ts/index.js';
|
|
|
|
import * as smartfile from '@pushrocks/smartfile';
|
2020-02-02 20:10:42 +00:00
|
|
|
|
|
|
|
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();
|
2023-01-09 17:17:33 +00:00
|
|
|
expect(testSmartJimp).toBeInstanceOf(smartjimp.SmartJimp);
|
|
|
|
});
|
|
|
|
|
|
|
|
tap.test('should be able to create a master', async () => {
|
|
|
|
const convertedAsset = await testSmartJimp.getFromUrl('https://images.unsplash.com/photo-1673276628202-737bf3020ac2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3774&q=80', {width: 200});
|
|
|
|
(await smartfile.Smartfile.fromBuffer('.nogit/result.jpeg', convertedAsset)).write();
|
2020-02-02 20:10:42 +00:00
|
|
|
});
|
2020-02-01 17:24:41 +00:00
|
|
|
|
2020-02-02 20:10:42 +00:00
|
|
|
tap.start();
|