n4s
Version:
typed schema validation version of enforce
19 lines (15 loc) • 776 B
text/typescript
import { describe, it, expect } from 'vitest';
import { enforce } from '../../../n4s';
describe('minLength', () => {
it('pass when string length is greater than or equal to minimum', () => {
expect(enforce.isString().minLength(2).run('hi').pass).toBe(true);
expect(enforce.isString().minLength(2).run('hello').pass).toBe(true);
expect(enforce.isString().minLength(0).run('').pass).toBe(true);
expect(enforce.isString().minLength(3).run('abc').pass).toBe(true);
});
it('fails when string length is less than minimum', () => {
expect(enforce.isString().minLength(3).run('hi').pass).toBe(false);
expect(enforce.isString().minLength(1).run('').pass).toBe(false);
expect(enforce.isString().minLength(5).run('test').pass).toBe(false);
});
});