diff --git a/packages/supertape/bin/subscribe.mjs b/packages/supertape/bin/subscribe.mjs index abf4da8..8bcd478 100644 --- a/packages/supertape/bin/subscribe.mjs +++ b/packages/supertape/bin/subscribe.mjs @@ -5,12 +5,11 @@ const {createHarness} = harnessCreator; const resolveFormatter = async (name) => await import(`@supertape/formatter-${name}`); -export async function subscribe({name, quiet, exit, worker, stdout}) { +export async function subscribe({name, exit, worker, stdout}) { const {isStop} = keyPress(); const harness = createHarness(await resolveFormatter(name)); - if (!quiet) - harness.pipe(stdout); + harness.pipe(stdout); worker.on('exit', (code) => { exit(code); diff --git a/packages/supertape/bin/supertape.mjs b/packages/supertape/bin/supertape.mjs index a8ebe19..363cfc1 100755 --- a/packages/supertape/bin/supertape.mjs +++ b/packages/supertape/bin/supertape.mjs @@ -26,7 +26,6 @@ const isStop = createIsStop(parentPort); if (worker) subscribe({ name: args.format, - quiet: args.quiet, exit, worker, stdout,