npx claudepluginhub renatillas/gleam --plugin gleam# /gleam-test - Run Gleam Tests Run tests with appropriate configuration and error handling. ## Usage ## Workflow 1. **Run all tests** 2. **Run for specific target** 3. **Analyze test failures** - Read error messages carefully - Check `let assert` patterns match actual values - Verify types are correct - Look for missing edge cases 4. **Fix failures** - Update test assertions - Fix implementation bugs - Add missing test cases 5. **Verify all tests pass** ## Common Issues ### Test Discovery - Functions must end in `_test` - Functions must be `pub`...
/testRuns pytest tests for CLI harness on local path or GitHub repo, verifies CLI resolution, and updates TEST.md with results if all pass.
/testRuns TDD workflow: writes failing tests for new features or bugs (Prove-It pattern), implements code to pass them, verifies full test suite.
/testExecutes unit, integration, or e2e tests with coverage analysis, quality metrics, failure diagnostics, and optional watch mode or auto-fixes.
/testGenerates test strategy overview, unit and integration test code, coverage analysis, execution plan, and maintenance roadmap for a specified component or feature.
/testLaunches Chrome for manual UI testing at given URL, monitors console errors during interaction, generates report with screenshots and logs on completion.
/testInvokes the testing-coach agent to provide guidance on screen reader, keyboard navigation, and automated testing for the given request.
Run tests with appropriate configuration and error handling.
/gleam-test [--target=erlang|javascript] [--watch] [pattern]
Run all tests
gleam test
Run for specific target
gleam test --target erlang
gleam test --target javascript
Analyze test failures
let assert patterns match actual valuesFix failures
Verify all tests pass
gleam test --target erlang && gleam test --target javascript
_testpubtest/ directorylet assert NOT deprecated should moduleTrue = actual == expected for comparisonsSee: Test Timeouts