We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54ae20b commit a43242fCopy full SHA for a43242f
1 file changed
src/utils/dlx.mts
@@ -278,7 +278,8 @@ export async function spawnCoanaDlx(
278
)
279
const output = await result.spawnPromise
280
// Print output when running in e2e-tests workflow for debugging.
281
- if (CI && VITEST) {
+ // Respect the silent option from the caller.
282
+ if (CI && VITEST && !dlxOptions.silent) {
283
if (output.stdout) {
284
console.log(output.stdout)
285
}
@@ -291,7 +292,8 @@ export async function spawnCoanaDlx(
291
292
const stdout = (e as any)?.stdout
293
const stderr = (e as any)?.stderr
294
295
296
297
if (stdout) {
298
console.log(stdout)
299
0 commit comments