Test: appease linter - see 3c177af

This commit is contained in:
Lovell Fuller 2025-03-14 12:17:37 +00:00
parent 3c177af594
commit f3a4f060c6

View File

@ -52,7 +52,7 @@ async.series({
jpegSuite.add('jimp-buffer-buffer', {
defer: true,
fn: async function (deferred) {
const image = await Jimp.read(inputJpgBuffer)
const image = await Jimp.read(inputJpgBuffer);
await image
.resize({ w: width, h: height, mode: Jimp.RESIZE_BICUBIC })
.getBuffer(JimpMime.jpeg, { quality: 80 });
@ -576,7 +576,7 @@ async.series({
}).add('jimp-file-file', {
defer: true,
fn: async function (deferred) {
const image = await Jimp.read(fixtures.inputPngAlphaPremultiplicationLarge)
const image = await Jimp.read(fixtures.inputPngAlphaPremultiplicationLarge);
await image
.resize({ w: width, h: heightPng, mode: Jimp.RESIZE_BICUBIC })
.write(outputPng, { deflateLevel: 6, filterType: 0 });