Translations: Français
If you forget a t.end();
in test.cb()
the test will hang indefinitely.
import test from 'ava';
test.cb(t => {
t.pass();
});
import test from 'ava';
test.cb(t => {
t.pass();
t.end();
});
test.cb(t => {
acceptsCallback(t.end);
});