Don't bail on prompts in tests

This commit is contained in:
Tom Coleman 2022-10-24 12:07:04 +11:00
parent 96f920afda
commit 090fb358ac

View File

@ -10,7 +10,7 @@ type TelemetryOptions = {
};
const promptCrashReports = async () => {
if (process.env.CI) return undefined;
if (process.env.CI && process.env.NODE_ENV !== 'test') return undefined;
const { enableCrashReports } = await prompts({
type: 'confirm',