Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #1011

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,17 @@ Because there's a bootstrapping cycle between `@tapjs/core`,
`@tapjs/test`, and all of the plugins, they MUST use
`skipLibCheck: true` in their tsconfigs. It should not be used in
other packages.

## You might also consider

- [Vitest](https://vitest.dev/guide/features.html)
- Excellent tooling, very fast test runner, compatible with jest and [chai's well know exepect.toBe type api]([url](https://www.chaijs.com/api/bdd/)https://www.chaijs.com/api/bdd/).
- Painless coverage reports (no map function).
- Reporting options (there's TAP output also)
- Uses vite's HMR to enhance speed
- File watch mode.
- Plug in for vscode's test runner. Can run and debug tests in a few clicks.
- "In code" testing (tests next to code)
- Benchmark test built in
- Test filtering with a single keyword (or pattern)
- Typescript / esmodules natively