diff --git a/src/commands/org/create/scratch.ts b/src/commands/org/create/scratch.ts index a64b28ab..d50b837d 100644 --- a/src/commands/org/create/scratch.ts +++ b/src/commands/org/create/scratch.ts @@ -224,11 +224,8 @@ export default class OrgCreateScratch extends SfCommand { if (flags.async) { ms.goto('done', { scratchOrgInfo }); ms.stop(); - - this.log(); this.info(messages.getMessage('action.resume', [this.config.bin, scratchOrgInfo.Id])); } else { - this.log(); this.logSuccess(messages.getMessage('success')); } @@ -239,7 +236,6 @@ export default class OrgCreateScratch extends SfCommand { const scratchOrgInfoId = (error.data as { scratchOrgInfoId: string }).scratchOrgInfoId; const resumeMessage = messages.getMessage('action.resume', [this.config.bin, scratchOrgInfoId]); - this.log(); this.info(resumeMessage); this.error('The scratch org did not complete within your wait time', { code: '69', exit: 69 }); } else { diff --git a/test/tsconfig.json b/test/tsconfig.json index 86840354..ebfca190 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -5,7 +5,6 @@ "skipLibCheck": true, "strictNullChecks": true, "baseUrl": "../", - "sourceMap": true, - "jsx": "react" + "sourceMap": true } }