DEV Community

Discussion on: What's your favorite JS testing framework?

Collapse
 
ashoutinthevoid profile image
Full Name • Edited

I use tape for most purposes. Simple, lightweight, works as well today as it did years and years ago. It's also very similar to Rust's built-in test runner, so when I move between languages the context switch is that much lighter.

I also personally dislike the bdd test style (thus I wouldn't use a framework that only provides that option, assuming the choice is mine). Not for any technical reasons that actually matter, just personal taste. So much noise for the same results.

Collapse
 
madza profile image
Madza

Thanks for the input 👍😉