@vertesia/converters 0.67.0 → 0.69.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/image.test.ts +1 -1
package/package.json
CHANGED
package/src/image.test.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { createImageTransformer } from './image';
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
test('should resize an image to a maximum height or width', async () => {
|
|
9
|
-
const max_hw =
|
|
9
|
+
const max_hw = 1596;
|
|
10
10
|
const format: keyof sharp.FormatEnum = 'jpeg';
|
|
11
11
|
const imageFile = fs.readFileSync(path.join(__dirname, '../fixtures', 'cat-picture.jpg'));
|
|
12
12
|
|