← ClaudeAtlas

tenet-testinglisted

Audits test coverage, critical-path tests, flaky markers, and missing test categories.
inceptyon-labs/tenet-skills · ★ 0 · Testing & QA · score 76
Install: claude install-skill inceptyon-labs/tenet-skills
# Tenet Testing — Test Coverage & Quality Auditor > *"Untested code is broken code you haven't noticed yet."* Evaluates the health of a project's test suite across six axes: coverage percentage, mutation testing evidence, test-to-source file ratio, critical-path test presence, flaky test markers, and missing test categories. Consumes coverage and mutation reports from the toolchain when available and falls back to structural analysis when not. ## Purpose Test coverage percentages alone are misleading — a project can have 90% coverage while missing tests for authentication, payment processing, and data mutations. This skill evaluates not just how much is tested, but whether the right things are tested, whether the tests themselves are healthy (no committed `.only` or `.skip`), and whether the test strategy covers all necessary categories (unit, integration, E2E). ## Language Support Matrix ```yaml support: native: [javascript, typescript, python, go, java, ruby, rust, c#, kotlin, swift] heuristic: [all others] note: "Native support means the skill understands the test framework conventions (file naming, test runner config, assertion patterns). Heuristic support falls back to generic file-pattern matching." ``` ## Framework Recognition | Language | Test Frameworks Recognized | |---|---| | JavaScript/TypeScript | Jest, Vitest, Mocha, AVA, Tap, Node test runner, Playwright, Cypress, Testing Library | | Python | pytest, unittest, nose2, Robot Framework | | Go | `test