0
Q:

chai test throw error

expect(model.get.bind(model, 'z')).to.throw('Property does not exist in model schema.');
expect(model.get.bind(model, 'z')).to.throw(new Error('Property does not exist in model schema.'));
1
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.');
    });
  });
1

New to Communities?

Join the community