Chatwoot/app/javascript/shared/helpers/specs/CustomErrors.spec.js
2021-12-03 13:19:11 +05:30

13 lines
390 B
JavaScript

const { DuplicateContactException } = require('../CustomErrors');
describe('DuplicateContactException', () => {
it('returns correct exception', () => {
const exception = new DuplicateContactException({
attributes: ['email'],
});
expect(exception.message).toEqual('DUPLICATE_CONTACT');
expect(exception.data).toEqual({
attributes: ['email'],
});
});
});