ark-chainsaw-testing
16
总安装量
2
周安装量
#21161
全站排名
安装命令
npx skills add https://github.com/mckinsey/agents-at-scale-ark --skill ark-chainsaw-testing
Agent 安装分布
claude-code
2
windsurf
1
opencode
1
antigravity
1
gemini-cli
1
Skill 文档
Ark Chainsaw Testing
Run and write Chainsaw e2e tests for Ark resources.
Running Tests
# Run all standard tests
(cd tests && chainsaw test --selector 'standard')
# Run specific test
chainsaw test ./tests/query-parameter-ref --fail-fast
# Debug mode - keep resources on failure
chainsaw test ./tests/query-parameter-ref --skip-delete --pause-on-failure
Writing Tests
Reference tests/CLAUDE.md for comprehensive patterns.
For a complete working example that shows the correct patterns for writing tests, see examples.md.
Test Structure
tests/my-test/
âââ chainsaw-test.yaml # Test definition
âââ mock-llm-values.yaml # Mock LLM config (if needed)
âââ README.md # Required documentation
âââ manifests/
âââ a03-model.yaml # Model before Agent
âââ a04-agent.yaml # Agent before Query
âââ a05-query.yaml # Query last
Environment Variables
For real LLM tests (not mock-llm):
export E2E_TEST_AZURE_OPENAI_KEY="your-key"
export E2E_TEST_AZURE_OPENAI_BASE_URL="your-endpoint"