Integration Test Run Results
Date: 2026-07-25
Command: npm run test:integration
Outcome: All 3 tests skipped (0 passed, 0 failed)
Why tests were skipped
The integration test suite (scripts/haiku.integration.test.ts) gates execution on the presence of either:
COPILOT_GITHUB_TOKEN, or
COPILOT_SDK_URI
Neither environment variable was set in the workflow environment, so all tests used it.skip.
Tests that were skipped
| # |
Test name |
| 1 |
runs a single-agent haiku sample with the real runtime |
| 2 |
runs a single-agent sonnet sample with the real runtime |
| 3 |
runs a complex sonnet sample with tools, addons, intents, and subagent wiring |
Steps completed
- ✅
npm ci — dependencies installed successfully
- ⚠️
npm run test:integration — exited 0 but all tests skipped due to missing credentials
To run the tests for real
Set one of the following before running the suite:
COPILOT_GITHUB_TOKEN=<your-token> npm run test:integration
# or, in an agentic workflow context:
COPILOT_SDK_URI=<sdk-uri> npm run test:integration
Generated by Rig Integration Tests · sonnet46 16.2 AIC · ⊞ 5K · ◷
Integration Test Run Results
Date: 2026-07-25
Command:
npm run test:integrationOutcome: All 3 tests skipped (0 passed, 0 failed)
Why tests were skipped
The integration test suite (
scripts/haiku.integration.test.ts) gates execution on the presence of either:COPILOT_GITHUB_TOKEN, orCOPILOT_SDK_URINeither environment variable was set in the workflow environment, so all tests used
it.skip.Tests that were skipped
runs a single-agent haiku sample with the real runtimeruns a single-agent sonnet sample with the real runtimeruns a complex sonnet sample with tools, addons, intents, and subagent wiringSteps completed
npm ci— dependencies installed successfullynpm run test:integration— exited 0 but all tests skipped due to missing credentialsTo run the tests for real
Set one of the following before running the suite: