Aşağıdaki test tuhaf davranıyor:
it('Should return the exchange rates for btc_ltc', function(done) {
var pair = 'btc_ltc';
shapeshift.getRate(pair)
.then(function(data){
expect(data.pair).to.equal(pair);
expect(data.rate).to.have.length(400);
done();
})
.catch(function(err){
//this should really be `.catch` for a failed request, but
//instead it looks like chai is picking this up when a test fails
done(err);
})
});
Reddedilmiş bir sözü nasıl düzgün bir şekilde ele almalı (ve test etmeliyim)?
: Nasıl düzgün yani (başarısız bir testi ele olmalıdır expect(data.rate).to.have.length(400);
?
İşte test ettiğim uygulama:
var requestp = require('request-promise');
var shapeshift = module.exports = {};
var url = 'http://shapeshift.io';
shapeshift.getRate = function(pair){
return requestp({
url: url + '/rate/' + pair,
json: true
});
};
Ensure the done() callback is being called in this test
mocha 2.2.5 ile yapmaya çalışırken bir hata alıyorum.