We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c81d315 + 3ec9baf commit cf1f79aCopy full SHA for cf1f79a
src/commands/project/deploy/validate.ts
@@ -238,6 +238,9 @@ export default class DeployMetadataValidate extends SfCommand<DeployResultJson>
238
),
239
componentDeployErrors,
240
result.response.numberComponentErrors ? `${result.response.numberComponentErrors} component error(s)` : '',
241
+ ensureArray(result.response.details.runTestResult?.failures).map(
242
+ (f) => `${f.name}.${f.methodName} - ${f.message}`
243
+ ),
244
]
245
.join(os.EOL)
246
.trim(),
0 commit comments