ava
ava copied to clipboard
Node.js test runner that lets you develop with confidence 🚀
* What you're trying to do Use Ava with Node 22. * Why you can't use AVA for this If `--engine-strict` is used, `npm install` fails with: ``` npm error...
Closes #3327
## Feature Request AVA should support a way to ignore a resolved configuration, for example a (mono-)repo's `ava.config.js`. Possible solutions: - Have configurations in a directory take precedence over a...
Closes #2993. Updates examples to be ESM and use AVA 6. Also adds an example for using [ESM loaders with TypeScript](https://github.com/avajs/ava/blob/main/docs/recipes/typescript.md#enabling-avas-support-for-typescript-test-files). Maybe shouldn't be merged until #3334 is resolved.
Unhandled exceptions from the `axios` library result in the following (even though all promises are properly awaited): ``` Unhandled rejection in example.test.js DOMException {} ``` Whereas I would expect something...
I want to spit out a TAP so that I can get machine-generated reports and stuff, but AVA's built-in reporter is way more human-readable than any of the existing TAP...