cheke
Version:
Express request validator with object's style response body and inspired by Laravel's Validator
29 lines (24 loc) • 768 B
JavaScript
const uuid = require('../../src/validators/uuid');
describe('date-validator', () => {
test('should return The undefined is not a valid UUID.', () => {
expect(uuid()).toBe('The undefined is not a valid UUID.');
});
test('should return The userId is not a valid UUID.', () => {
expect(uuid({
value: 'date',
label: 'userId',
}),).toBe('The userId is not a valid UUID.');
});
test('should return The userId is not a valid UUID.', () => {
expect(uuid({
value: 21,
label: 'userId',
}),).toBe('The userId is not a valid UUID.');
});
test('should return false', () => {
expect(uuid({
value: '8320ceae-987e-464e-abbd-df0315be4623',
label: 'userId',
}),).toBe(false);
});
});