8 lines
204 B
TypeScript
8 lines
204 B
TypeScript
import { CustomValidator } from '@app/_helpers/custom.validator';
|
|
|
|
describe('Custom.Validator', () => {
|
|
it('should create an instance', () => {
|
|
expect(new CustomValidator()).toBeTruthy();
|
|
});
|
|
});
|