definma-ui/src/app/validation.service.spec.ts

13 lines
353 B
TypeScript
Raw Normal View History

2020-05-19 12:49:06 +02:00
import { TestBed } from '@angular/core/testing';
import { ValidationService } from './validation.service';
describe('ValidationService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ValidationService = TestBed.get(ValidationService);
expect(service).toBeTruthy();
});
});