Ho problemi a far funzionare Chai expect.to.throw
in un test per la mia app node.js. Il test continua a fallire sull'errore generato, ma se avvolgo il caso di prova nel tentativo di rilevare e affermare l'errore rilevato, funziona.
Non expect.to.throw
funziona come penso che dovrebbe o qualcosa del genere?
it('should throw an error if you try to get an undefined property', function (done) {
var params = { a: 'test', b: 'test', c: 'test' };
var model = new TestModel(MOCK_REQUEST, params);
// neither of these work
expect(model.get('z')).to.throw('Property does not exist in model schema.');
expect(model.get('z')).to.throw(new Error('Property does not exist in model schema.'));
// this works
try {
model.get('z');
}
catch(err) {
expect(err).to.eql(new Error('Property does not exist in model schema.'));
}
done();
});
Il fallimento:
19 passing (25ms)
1 failing
1) Model Base should throw an error if you try to get an undefined property:
Error: Property does not exist in model schema.
model
L'istanza ha una funzione chiamata get che ho passato / chiamato in wait.