Files
wgenerator/src/app/services/user/user.service.spec.ts
2020-05-13 19:35:21 +02:00

13 lines
319 B
TypeScript

import {TestBed} from '@angular/core/testing';
import {UserService} from './user.service';
describe('UserService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: UserService = TestBed.get(UserService);
expect(service).toBeTruthy();
});
});