1
0
Fork 0
salty-dog/test/utils/ajv/TestFriendlyErrors.ts

16 lines
361 B
TypeScript

import { expect } from 'chai';
import { friendlyError } from '../../../src/utils/ajv';
describe('friendly errors', () => {
it('should have a message', () => {
const err = friendlyError({
dataPath: 'test-path',
keyword: 'test',
params: { /* ? */ },
schemaPath: 'test-path',
});
expect(err.msg).to.not.equal('');
});
});