-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Description
Ava borrows Jest's snapshot feature, and from #1275 and other issues, this feature is evolving in Ava. That's really awesome.
Jest, in addition, has an interactive watcher that:
- Runs only tests related to files that have changed
- Replaces previous console output of passing tests
- Provides commands to interact with the running watcher
One of the commands is u, which updates snapshots of tests that just ran.
I became familiar with Ava thru @novemberborn when working on babel-plugin-import-glob. I really like Ava, especially with the TAP-like syntax.
Ava just needs an interactive watcher to compliment the snapshot feature.