From ac4ff8ada4fd4a9397f183a1547a0b70e6f97a20 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Wed, 27 Jul 2022 22:04:39 +0200 Subject: [PATCH] Updated import path for minifier tests - this now tests the exports of the package - also has the nice side effect of bumping coverage to 100% --- ghost/minifier/test/minifier.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/minifier/test/minifier.test.js b/ghost/minifier/test/minifier.test.js index ccf7473a12..a25e6bae57 100644 --- a/ghost/minifier/test/minifier.test.js +++ b/ghost/minifier/test/minifier.test.js @@ -4,7 +4,7 @@ require('./utils'); const path = require('path'); const fs = require('fs').promises; const os = require('os'); -const Minifier = require('../lib/minifier'); +const Minifier = require('../'); describe('Minifier', function () { let minifier;