From e418d91511fa88a6b4c014144509efcd8315bcdc Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Sun, 13 Jun 2021 10:18:01 +0100 Subject: [PATCH] Test: correct coverage syntax --- lib/libvips.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libvips.js b/lib/libvips.js index 245291e8..4618fbc2 100644 --- a/lib/libvips.js +++ b/lib/libvips.js @@ -23,7 +23,7 @@ const mkdirSync = function (dirPath) { try { fs.mkdirSync(dirPath, { recursive: true }); } catch (err) { - /* istanbul ignore if */ + /* istanbul ignore next */ if (err.code !== 'EEXIST') { throw err; }