From 08854a940c5e2640b85d86a27683c3faade0f22c Mon Sep 17 00:00:00 2001 From: Sindre Sorhus Date: Sat, 7 Nov 2015 13:01:40 +0700 Subject: [PATCH] FAQ clarification fixes #145 --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 09852ce7a..a69ac4c6d 100644 --- a/readme.md +++ b/readme.md @@ -508,7 +508,7 @@ You can't use [`istanbul`](https://github.com/gotwarlost/istanbul) for code cove ### Why not `mocha`, `tape`, `node-tap`? -Mocha requires you to use implicit globals like `describe` and `it`, too unopinionated, bloated, synchronous by default, serial test execution, and slow. Tape and node-tap are pretty good. AVA is highly inspired by their syntax. However, they both execute tests serially and they've made [TAP](https://testanything.org) a first-class citizen which has IMHO made their codebases a bit convoluted and coupled. TAP output is hard to read so you always end up using an external tap reporter. AVA is highly opinionated and concurrent. It comes with a default simple reporter and will in the future support TAP through a reporter. +Mocha requires you to use implicit globals like `describe` and `it` with the default interface (which most people use), too unopinionated, bloated, synchronous by default, serial test execution, and slow. Tape and node-tap are pretty good. AVA is highly inspired by their syntax. However, they both execute tests serially and they've made [TAP](https://testanything.org) a first-class citizen which has IMHO made their codebases a bit convoluted and coupled. TAP output is hard to read so you always end up using an external tap reporter. AVA is highly opinionated and concurrent. It comes with a default simple reporter and will in the future support TAP through a reporter. ### How is the name written and pronounced?