在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用test
星标1
分支1
更新时间2026年3月4日 21:23
Run Kaocha tests
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Run Kaocha tests
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Synchronise Nix deps hash after changing deps.edn
Diagnose and fix CI build failures
Create atomic commits from all unstaged changes
Create atomic commits from session changes only
Create a new Clojure component
Work on form UI components
| name | test |
| description | Run Kaocha tests |
| allowed-tools | Bash(just test*, just), Read, Grep, Glob, mcp__clojure-mcp__clojure_eval |
Run tests and debug failures. Before writing tests, read docs/testing.org.
just test # Full test suite
just test :e2e # E2E tests only
just test :generative # Generative tests only
just test :unit # Unit tests only
For rapid iteration (requires nREPL on port 9999):
;; Run all tests in a namespace
(require '[clojure.test :refer [run-tests]])
(run-tests 'bits.foo-test)
;; Run a single test
(require '[clojure.test :refer [test-var]])
(test-var #'bits.foo-test/my-test)
;; Reload and test
(require '[bits.foo :as foo] :reload)
(run-tests 'bits.foo-test)
BANNED:
Thread/sleep — use condition-based waitsprintln in test helpers — return data, assert with isREQUIRED:
^:e2e or ^:generative metadata for filteringassoc-in, never add params to t/systemThe log shows the shrunk failing sequence:
Failed: [[[:type :number "aAA"] ...]]
Reproduce in REPL:
(require '[bits.form.gen-test :as gen-test])
;; Execute the shrunk actions manually
Common patterns:
| Pattern | Cause |
|---|---|
Timeout (7): | Element/condition didn't appear |
aria-busy stuck | Form validation not completing |
Browser screenshots are uploaded as CI artifacts on failure.
$ARGUMENTS