¿Cuál es el punto de la devolución de llamada done ()?
En Mochajs, usan "done ()" para probar el código asincrónico, así:
describe('User', function() {
describe('#save()', function() {
it('should save without error', function(done) {
var user = new User('Luna');
user.save(function(err) {
if (err) throw err;
done();
});
});
});
});
Que significa exactamente? Hice console.log (done.toString ()) y obtuve esto:
function (err) {
if (err instanceof Error || toString.call(err) === '[object Error]') {
return done(err);
}
if (err) {
if (Object.prototype.toString.call(err) === '[object Object]') {
return done(new Error('done() invoked with non-Error: '
+ JSON.stringify(err)));
}
return done(new Error('done() invoked with non-Error: ' + err));
}
done();
}
¿Es done () al final aquí diferente de done () en el primer fragmento de código?