Skip to content

Commit 361f994

Browse files
Merge pull request #419 from salesforcecli/ar/feat/revert-run-eval-to-beta
W-22456723: revert run-eval command to beta state
2 parents 1e309af + eb22817 commit 361f994

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/commands/agent/test/run-eval.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export default class AgentTestRunEval extends SfCommand<RunEvalResult> {
7070
public static readonly summary = messages.getMessage('summary');
7171
public static readonly description = messages.getMessage('description');
7272
public static readonly examples = messages.getMessages('examples');
73+
public static state = 'beta';
7374

7475
public static readonly envVariablesSection = toHelpSection(
7576
'ENVIRONMENT VARIABLES',

test/commands/agent/test/run-eval.test.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,8 @@ describe('agent test run-eval', () => {
141141
// ─── State ─────────────────────────────────────────────────────────────────
142142

143143
describe('command metadata', () => {
144-
it('is not in beta or hidden state', () => {
145-
expect(AgentTestRunEval.state).to.not.equal('beta');
146-
expect(AgentTestRunEval.hidden).to.not.equal(true);
144+
it('is in beta state', () => {
145+
expect(AgentTestRunEval.state).to.equal('beta');
147146
});
148147
});
149148

0 commit comments

Comments
 (0)