Domande taggate «chai»



7
Nel test moka durante la chiamata della funzione asincrona come evitare il timeout Errore: timeout superato di 2000 ms
Nella mia applicazione nodo sto usando mocha per testare il mio codice. Durante la chiamata di molte funzioni asincrone tramite moka, viene visualizzato l'errore di timeout ( Error: timeout of 2000ms exceeded.). Come posso risolvere questo? var module = require('../lib/myModule'); var should = require('chai').should(); describe('Testing Module', function() { it('Save Data', …
200 node.js  mocha  chai 


4
Come testare correttamente le promesse con moka e chai?
Il seguente test si sta comportando in modo strano: 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 …
148 node.js  promise  mocha  chai 

8
NodeJS UnhandledPromiseRejectionWarning
Quindi, sto testando un componente che si basa su un emettitore di eventi. Per fare ciò ho trovato una soluzione usando Promises with Mocha + Chai: it('should transition with the correct event', (done) => { const cFSM = new CharacterFSM({}, emitter, transitions); let timeout = null; let resolved = false; …


9
Chai: come testare undefined con la sintassi "should"
Basandomi su questo tutorial che prova un'app angularjs con chai, voglio aggiungere un test per un valore indefinito usando lo stile "should". Questo fallisce: it ('cannot play outside the board', function() { scope.play(10).should.be.undefined; }); con errore "TypeError: Impossibile leggere la proprietà 'should' di undefined", ma il test viene superato con …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.