opencode-agent-kit
Version:
Multi-stack OpenCode agent toolkit — 33+ specialized AI agents, 200+ skills, 46 commands, 8 MCP servers (Nuxt, React, Node.js, Laravel, CI3, Android, Flutter, DevOps, SEO, SonarQube, and more)
25 lines (19 loc) • 498 B
Markdown
# Flutter Test Command
Run Flutter tests with coverage.
## Usage
```
/flutter-test [type=all]
```
## Test Types
- `unit` — Run `flutter test test/unit/`
- `widget` — Run `flutter test test/widget/`
- `integration` — Run `flutter test test/integration/`
- `all` — Run all tests with coverage (default)
## Coverage
- `flutter test --coverage`
- Min coverage target: 80%
- Generate LCOV report at `coverage/lcov.info`
## Verification
- All tests pass
- No skipped tests
- Coverage >= 80%