happy-server/sources/storage/processImage.spec.ts
2025-08-26 21:46:55 -07:00

8 lines
281 B
TypeScript

import * as fs from 'fs';
import { processImage } from './processImage';
describe('processImage', () => {
it('should resize image', async () => {
let img = fs.readFileSync(__dirname + '/__testdata__/image.jpg');
let result = await processImage(img);
});
});