Tests: ensure median default window is covered

This commit is contained in:
Lovell Fuller 2021-11-17 13:58:56 +00:00
parent dcd9a3c558
commit b876abaf88

View File

@ -35,7 +35,7 @@ describe('Median filter', () => {
it('default window (3x3)', async () => { it('default window (3x3)', async () => {
const [r, g, b] = await sharp(fixtures.inputSvgSmallViewBox) const [r, g, b] = await sharp(fixtures.inputSvgSmallViewBox)
.median(3) .median()
.raw() .raw()
.toBuffer(); .toBuffer();