https://github.com/scottdj92/ava-poc
a POC for writing tests with AVA
https://github.com/scottdj92/ava-poc
ava testing testing-tools typescript
Last synced: 21 days ago
JSON representation
a POC for writing tests with AVA
- Host: GitHub
- URL: https://github.com/scottdj92/ava-poc
- Owner: scottdj92
- License: mit
- Created: 2019-01-06T00:53:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-06T01:27:41.000Z (over 7 years ago)
- Last Synced: 2025-06-04T12:16:34.531Z (about 1 year ago)
- Topics: ava, testing, testing-tools, typescript
- Language: TypeScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ava-poc
a POC for writing tests with AVA
## Reasoning
I wanted to find a test runner that could run tests concurrently and enable parallelism (multiple functions running in parallel)
## Thoughts
* Ava.js works pretty well with TS, some configuration required, but no compilation needed. This is a plus.
* Writing tests is pretty simple after reading the docs. I like the `.is` assertion
* Errors are clean and obvious in the terminal on both windows and OS X
* Ava.js is useful for large amounts of tests that can be cut down on time by running concurrently