From 4d59805989ccf7c87bfc816ad86193e3fb0cf407 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Sun, 17 May 2026 20:36:52 +0400 Subject: [PATCH] chore: use less tokens --- AGENTS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AGENTS.md b/AGENTS.md index a9840e3..1cae7d4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -53,6 +53,8 @@ donutbrowser/ - After making changes, run `pnpm format && pnpm lint && pnpm test` at the root of the project - Always run this command before finishing a task to ensure the application isn't broken - `pnpm lint` includes spellcheck via [typos](https://github.com/crate-ci/typos). False positives can be allowlisted in `_typos.toml` +- The full `pnpm test` output dumps every test name (≈400+ lines) which burns context for no signal. Filter: + `pnpm test 2>&1 | grep -E "test result|panicked|FAILED"` — four "test result: ok" lines means everything passed. ## Code Quality