# test > Run tests on the codebase. - Author: Xantibody - Repository: Xantibody/dotfiles - Version: 20260119150933 - Stars: 1 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/Xantibody/dotfiles - Web: https://mule.run/skillshub/@@Xantibody/dotfiles~test:20260119150933 --- --- name: test description: Run tests on the codebase. --- # Test Run test suite to verify functionality. ## Steps 1. Detect the project type and find the test command: - TypeScript/JavaScript: `npm test`, `vitest`, `jest` - Go: `go test ./...` - Rust: `cargo test` - Python: `pytest`, `python -m unittest` - General: `make test` 2. If no test framework is configured, propose adding one appropriate for the project. 3. Run the command and report results. Fix any failing tests.