From 25909a60b44ac6a57de0139b4c87425851e4ae7a Mon Sep 17 00:00:00 2001 From: Nicolas Vuillamy Date: Tue, 17 Sep 2024 08:47:32 -0700 Subject: [PATCH] fix: 3023 (allow to validate with NoTestRun for later QuickDeploy) --- src/commands/project/deploy/validate.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/project/deploy/validate.ts b/src/commands/project/deploy/validate.ts index 2b6d7ad37..a4bad3044 100644 --- a/src/commands/project/deploy/validate.ts +++ b/src/commands/project/deploy/validate.ts @@ -87,7 +87,7 @@ export default class DeployMetadataValidate extends SfCommand 'target-org': Flags.requiredOrg(), tests: testsFlag({ helpGroup: testFlags }), 'test-level': testLevelFlag({ - options: [TestLevel.RunAllTestsInOrg, TestLevel.RunLocalTests, TestLevel.RunSpecifiedTests], + options: [TestLevel.RunAllTestsInOrg, TestLevel.RunLocalTests, TestLevel.RunSpecifiedTests, TestLevel.NoTestRun], default: TestLevel.RunLocalTests, description: messages.getMessage('flags.test-level.description'), summary: messages.getMessage('flags.test-level.summary'),