Domande taggate «mocha»

Mocha.js è un framework di test JavaScript ricco di funzionalità in esecuzione su Node.js e sul browser.

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
unit test di funzioni private con mocha e node.js
Sto usando moka per testare un'unità un'applicazione scritta per node.js Mi chiedo se sia possibile eseguire funzioni di unit test che non sono state esportate in un modulo. Esempio: Ho molte funzioni definite in questo modo in foobar.js function private_foobar1(){ ... } function private_foobar2(){ ... } e alcune funzioni esportate …





6
JavaScript Standard Style non riconosce Mocha
Ho un file di test Mocha simile a questo: var expect = require('chai').expect var muting = require('../muting') describe('muting', function () { describe('init()', function () { it('should inject an object into twitter', function () { var twitter = 'twitter' muting.init(twitter) expect(muting.twitter).to.equal(twitter) }) }) }) Quando eseguo mochadalla CLI, esegue correttamente il …
94 javascript  mocha 






6
unendo test da più file con mocha.js
Sto cercando di unire tutti i test da più file in un unico file, qualcosa del genere: describe('Controllers', function() { describe('messages.js', function() { require('./controllertests/messages').test(options); }) describe('users.js', function() { require('./controllertests/users').test(options); }) }) Sono abbastanza sicuro che questo non sia il modo migliore per partecipare ai test, ho qualche difficoltà a trovare …

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.