From 1d65b28a7b8f054e12b66852b524f9be806c7e43 Mon Sep 17 00:00:00 2001 From: 3822802 <123643427+3822802@users.noreply.github.com> Date: Thu, 13 Aug 2026 18:27:20 +0700 Subject: [PATCH] =?UTF-8?q?docs(agents):=20fix=20test=20command=20?= =?UTF-8?q?=E2=80=94=20tests/=20does=20not=20exist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 5f940d6..a05160a 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -60,8 +60,8 @@ of a single commit, use `SKIP_DOCS_HOOK=1` or put `[skip-docs]` in the message. ## Testing -- Run the llms-kit suite: `node --test tests/` -- Include liveness checks against the deployed site: `LLMS_LIVE=1 node --test tests/` +- Run the test suite: `npm test` (vitest) +- Include liveness checks against the deployed site: `LLMS_LIVE=1 npm test` ## Analytics