Auto-detect testing framework and run relevant tests. Identifies Jest, Vitest, Playwright, Cypress, pytest, Go test, and others. Can run all tests, specific fil
复制下面这句话,粘贴给 Claude Code、Codex、Cursor 等 AI 编程工具,它会读取安装说明并在你确认后完成安装。
请阅读 https://ai.atlankj.com/install/asset/gh-test-detect-0db21e4e1273 ,按照其中的说明把「test-detect」安装到你(当前 AI 工具)中。执行前先告诉我将运行的命令和写入的位置,等我确认。
查看 AI 将读取的安装说明正在读取 GitHub 原文…
内容来自 GitHub 原始文件,由原作者维护。在 GitHub 查看
Automatically detect the testing framework in the current project and run the right tests.
Check for these files in order (first match wins):
| Check | Framework | Run Command |
|---|---|---|
vitest.config.* exists OR vitest in devDeps | Vitest | npx vitest run |
jest.config.* exists OR jest in devDeps | Jest | npx jest |
playwright.config.* exists | Playwright | npx playwright test |
cypress.config.* exists | Cypress | npx cypress run |
pytest.ini or conftest.py or pyproject.toml with [tool.pytest] | pytest | python -m pytest |
go.mod exists | Go test | go test ./... |
Cargo.toml exists | Rust/cargo | cargo test |
mix.exs exists | ExUnit | mix test |
Gemfile with rspec | RSpec | bundle exec rspec |
package.json has scripts.test | npm test | npm test |
Report the detected framework before proceeding.
Check $ARGUMENTS for the mode:
src/auth/login.ts): Run tests for that file (Step 4)generate src/utils.ts): Generate tests (Step 5)Run the detected test command. After completion:
/test-detect <failing-file> to investigate a specific failure"Given a source file path, find its test file:
Search strategy (try in order):
__tests__/<filename>.test.<ext> (Jest convention)<filename>.test.<ext> (co-located)<filename>.spec.<ext> (alternative convention)test/<filename>_test.<ext> (Go/Python convention)tests/test_<filename>.<ext> (pytest convention)<filename>_test.go (Go convention)Use Glob to find matches. If found, run only that test file:
| Framework | Command |
|---|---|
| Vitest | npx vitest run <test-file> |
| Jest | npx jest <test-file> |
| Playwright | npx playwright test <test-file> |
| pytest | python -m pytest <test-file> |
| Go | go test -run <TestName> ./<package>/ |
| Cargo | cargo test <test_name> |
If no test file found, ask: "No tests found for this file. Want me to generate them? Run /test-detect generate <file>"
Read the source file and analyze:
describe block per function/classit/test blocks covering: happy path, edge cases, error casesSave to the conventional location for the detected framework:
__tests__/<filename>.test.<ext> or <filename>.test.<ext> (match existing convention)tests/test_<filename>.py<filename>_test.go (same directory)spec/<filename>_spec.rbShow the generated file path and ask if the user wants to run the new tests.
package.json has both test and test:unit/test:e2e scripts, prefer the specific one when context is clear