Readme says: > And this will result in an error because the code called more assertions than planned: ``` JavaScript test(t => { t.plan(1); t.pass(); setTimeout(() => { t.pass(); }, 100); }); ``` however running the test gives: ``` ✔ [anonymous] 1 test passed ```