docs(agents): fix test command — tests/ does not exist - #61
Open
3822802 wants to merge 1 commit into
Open
Conversation
|
@3822802 is attempting to deploy a commit to the Coinbase Team on Vercel. A member of the Team first needs to authorize it. |
Collaborator
🟡 Heimdall Review Status
|
AGENTS.md tells agents to run `node --test tests/`, but there is no tests/ directory in the repo. The project uses vitest (`npm test` -> `vitest run`), and CI runs vitest as well. An agent following AGENTS.md hits 'Could not find test files' and may conclude the suite is broken.
3822802
force-pushed
the
fix-agents-test-command
branch
from
August 13, 2026 12:41
5c8e007 to
1d65b28
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
AGENTS.mddocuments a test command that cannot run: there is notests/directory in this repo.Current
Problem
tests/does not exist — the repo root contains.claude/,.github/,app/,githooks/,public/,scripts/,vendor/node --test:package.json→"test": "vitest run",vitest@^2.1.9in devDependenciesREADME.md→ "npm test— vitest".github/workflows/ci.yml) runs vitestAn agent that follows
AGENTS.mdgetsCould not find test filesand may conclude the suite is broken, when it simply used the wrong runner.Fix
Point the Testing section at the command the project actually uses, keeping the
LLMS_LIVE=1env var since that is read by the tests themselves, not by the runner.