code-test-detector
ActiveTool of The Stall
Detects testing frameworks and test coverage presence in a code snippet or GitHub repository. For code snippets: identifies test functions, assertions, mocks, fixtures, and frameworks (Jest, pytest, go test, JUnit, RSpec, etc.). For GitHub repos: counts test files vs source files, surfaces config files, and gives a coverage verdict. No code execution — pure static analysis.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"code": {
"type": "string",
"description": "Code snippet to analyze for test patterns."
},
"filename": {
"type": "string",
"description": "Optional filename for the code snippet (e.g. 'utils.test.js') — helps confirm test file naming conventions."
},
"github_repo": {
"type": "string",
"description": "GitHub repository in 'owner/repo' format (e.g. 'facebook/react'). Analyzes the full repo file tree for test coverage."
}
},
"additionalProperties": false
}Parent server
The Stall
1/7 registries