Files
cleveragents-core/features/tdd_actor_run_response.feature
T
brent.edwards 512f30924b
CI / benchmark-publish (push) Failing after 43s
CI / quality (push) Successful in 1m26s
CI / lint (push) Successful in 1m34s
CI / typecheck (push) Successful in 1m56s
CI / security (push) Successful in 1m58s
CI / push-validation (push) Successful in 34s
CI / helm (push) Successful in 35s
CI / build (push) Successful in 1m7s
CI / e2e_tests (push) Successful in 3m49s
CI / integration_tests (push) Successful in 4m55s
CI / unit_tests (push) Successful in 6m10s
CI / docker (push) Successful in 1m29s
CI / coverage (push) Successful in 10m50s
CI / status-check (push) Successful in 3s
CI / status-check (pull_request) Blocked by required conditions
CI / push-validation (pull_request) Successful in 23s
CI / helm (pull_request) Successful in 29s
CI / build (pull_request) Successful in 56s
CI / lint (pull_request) Successful in 1m22s
CI / quality (pull_request) Successful in 1m24s
CI / typecheck (pull_request) Successful in 1m36s
CI / security (pull_request) Successful in 1m37s
CI / benchmark-publish (pull_request) Has been skipped
CI / integration_tests (pull_request) Successful in 3m50s
CI / e2e_tests (pull_request) Successful in 4m10s
CI / unit_tests (pull_request) Successful in 4m50s
CI / coverage (pull_request) Has started running
CI / docker (pull_request) Has started running
test(actor): Capture failing assertion for actor-run returning no response
TDD issue-capture test for bug #10861: agents actor run does not work.
The test invokes agents actor run with a built-in LLM actor name and
asserts the response is non-empty. Tagged with @tdd_expected_fail so
CI passes while the bug still exists.

ISSUES CLOSED: #10862
2026-04-29 00:32:44 +00:00

12 lines
621 B
Gherkin

@tdd_issue @tdd_issue_10861 @tdd_expected_fail
Feature: TDD Issue #10862 — agents actor run returns no useful response
As a user who invokes `agents actor run` with a built-in LLM actor
I want to receive the LLM's response
So that the command is useful
Scenario: Actor run with built-in LLM actor returns the LLM response
Given a configured provider registry with anthropic/claude-sonnet-4-20250514
And the built-in actors have been ensured
And I have a mock LLM that returns "feep"
When I run actor run with the built-in actor name and prompt "ping"
Then the actor run should return "feep"