How to test for thrown error with Chai.should [duplicate]

泄露秘密 提交于 2019-12-10 16:59:22

问题


I'm using Chai.should and I need to test for an exception, but whatever I try, I cannot get it to work. The docs only explain expect :(

I have this Singleton class which throws an error if you try

new MySingleton();

Here is the constructor that throws the error

constructor(enforcer) {
    if(enforcer !== singletonEnforcer) throw 'Cannot construct singleton';
    ...

Now I would like to check that this happens

 it('should not be possible to create a new instance', () => {
    (function () {
        new MySingleton();
    })().should.throw(Error, /Cannot construct singleton/);
 });

or

new MySingleton().should.throw(Error('Cannot construct singleton');

None of these work. How is this done ? Any suggestions ?


回答1:


The Problem here is that you are executing the function directly, effectively preventing chai from being able to wrap a try{} catch(){} block around it.

The error is thrown before the call even reaches the should-Property.

Try it like this:

 it('should not be possible to create a new instance', () => {
   (function () {
       new MySingleton();
   }).should.throw(Error, /Cannot construct singleton/);
});

or this:

MySingleton.should.throw(Error('Cannot construct singleton');

This lets Chai handle the function call for you.




回答2:


I know this is an answered question, but i'd still like to throw in my two cents.

There is a section in the style guide for this, namely: http://chaijs.com/guide/styles/#should-extras. So what does this look like in practice:

should.Throw(() => new MySingleton(), Error);

It's not all that different from the accepted answer, i find it a bit more readable though, and more in line with their guideline.



来源:https://stackoverflow.com/questions/36216868/how-to-test-for-thrown-error-with-chai-should

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!