8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import ValidateForm from './validate-form';
|
|
|
|
describe('ValidateForm', () => {
|
|
it('should create an instance', () => {
|
|
expect(new ValidateForm()).toBeTruthy();
|
|
});
|
|
});
|