Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/commands/agent/test/run-eval.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ export default class AgentTestRunEval extends SfCommand<RunEvalResult> {
public static readonly summary = messages.getMessage('summary');
public static readonly description = messages.getMessage('description');
public static readonly examples = messages.getMessages('examples');
public static state = 'beta';

public static readonly envVariablesSection = toHelpSection(
'ENVIRONMENT VARIABLES',
Expand Down
5 changes: 2 additions & 3 deletions test/commands/agent/test/run-eval.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,8 @@ describe('agent test run-eval', () => {
// ─── State ─────────────────────────────────────────────────────────────────

describe('command metadata', () => {
it('is not in beta or hidden state', () => {
expect(AgentTestRunEval.state).to.not.equal('beta');
expect(AgentTestRunEval.hidden).to.not.equal(true);
it('is in beta state', () => {
expect(AgentTestRunEval.state).to.equal('beta');
});
});

Expand Down
Loading