blob: b9221b90de937115e0616a5f6b72fcabce88e74e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { TestBed } from '@angular/core/testing';
import { UserService } from './user.service';
xdescribe('UserService', () => {
beforeEach(() => TestBed.configureTestingModule({}));
it('should be created', () => {
const service: UserService = TestBed.get(UserService);
expect(service).toBeTruthy();
});
});
|