gwt-tester
Installation
SKILL.md
GWT Tester
Use these instructions to write clean, readable tests with Given/When/Then semantics.
Terminology Map
Use the agnostic terms below throughout this skill.
| Agnostic term | JS/TS example | Dart example |
|---|---|---|
| Suite block | describe |
group |
| Case block | it / test |
test |
| Setup once (for a suite) | before |
setUpAll |
| Setup each (per case) | beforeEach |
setUp |
| Teardown once (for a suite) | after |
tearDownAll |
| Teardown each (per case) | afterEach |
tearDown |
Related skills
More from hexsis-llc/skills
git-committer
Generates conventional one line commit messages from a git diff
9pub-package-explorer
Find and read source code for Dart or Flutter packages from project dependencies or pub.dev. Use when asked to inspect package implementation details, trace dependency code, locate package files by resolving `.dart_tool/package_config.json`, or inspect a package that is not currently installed by unpacking it with `dart pub unpack`.
9