diff --git a/test/fixtures/plugin-noop.cjs b/test/fixtures/plugin-noop.cjs index cc40a464..31c25937 100644 --- a/test/fixtures/plugin-noop.cjs +++ b/test/fixtures/plugin-noop.cjs @@ -1 +1,3 @@ -module.exports = () => {}; +module.exports = function noop() { + +}; diff --git a/test/index.test.js b/test/index.test.js index 939ec7c3..bb5f48e7 100644 --- a/test/index.test.js +++ b/test/index.test.js @@ -139,7 +139,7 @@ test('Plugins are called with expected values', async (t) => { pluginName: '[Function: functionStub]', }, {...nextRelease, ...release2, notes: `${notes1}\n\n${notes2}\n\n${notes3}`, pluginName: '[Function: functionStub]'}, - {...nextRelease, notes: `${notes1}\n\n${notes2}\n\n${notes3}`, pluginName: pluginNoop}, + {...nextRelease, notes: `${notes1}\n\n${notes2}\n\n${notes3}`, pluginName: '[Function: noop]'}, ]; await td.replaceEsm('../lib/get-logger.js', null, () => t.context.logger);