ava-tests
Installation
SKILL.md
ava-tests
Overview
Per github.com/avajs/ava:
AVA's distinguishing properties:
- Concurrent by default: each test file runs in a separate Node process; tests within a file run concurrently unless serial.
- No globals:
import test from 'ava'- explicit, easier to type, no dependency-injection hacks. - Async-first: native promise/async-await support; no
donecallback dance. - Powerful assertion failures:
t.is/t.deepEqualetc. produce diff-rich failure output. - Snapshot support:
t.snapshot()built-in.