13 lines
353 B
TypeScript
13 lines
353 B
TypeScript
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();
|
|
});
|
|
});
|