We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0dbfbb commit 38ad9beCopy full SHA for 38ad9be
1 file changed
src/commands/sync.ts
@@ -825,8 +825,9 @@ export const runSync = async (options: SyncOptions, deps: SyncDeps = {}) => {
825
const plan = await getSyncPlan(options, deps);
826
await mkdir(plan.cacheDir, { recursive: true });
827
828
+ const isTestRunner = process.argv.includes("--test");
829
const useLiveOutput =
- !options.json && !isSilentMode() && process.stdout.isTTY;
830
+ !options.json && !isSilentMode() && process.stdout.isTTY && !isTestRunner;
831
const reporter = useLiveOutput ? new TaskReporter() : null;
832
const previous = plan.lockData;
833
const requiredMissing = plan.results.filter((result) => {
0 commit comments