Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

mocha should throw error

describe('createMap', () => {
    it('should throw an error if no contents were sent as argument', () => {
      expect(() => createMap()).to.throw('You have to send a list of things to map.');
    });
  });
 
PREVIOUS NEXT
Tagged: #mocha #throw #error
ADD COMMENT
Topic
Name
2+2 =