diff --git a/Herebyfile.js b/Herebyfile.js index 457335c4..6953600e 100644 --- a/Herebyfile.js +++ b/Herebyfile.js @@ -107,7 +107,10 @@ export const lint = task({ export const test = task({ name: 'test', run: async () => { - await execa(NODE_BIN, [JSDOC_BIN, '-T']); + await execa(NODE_BIN, [JSDOC_BIN, '-T'], { + stdout: process.stdout, + stderr: process.stderr, + }); }, });