chore: improve logging for tests

This commit is contained in:
Jeff Williams 2023-09-15 15:01:32 -07:00
parent df7d773856
commit e9d955b4ce
No known key found for this signature in database

View File

@ -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,
});
},
});