summaryrefslogtreecommitdiffstats
path: root/portal-FE-common/src/app/shared/services/userbar/userbar.service.spec.ts
blob: 924c85c39aef4ff3e005691bee4e52e728103885 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { TestBed } from '@angular/core/testing';

import { UserbarService } from './userbar.service';
import { HttpClientTestingModule } from '@angular/common/http/testing';

describe('UserbarService', () => {
  beforeEach(() => TestBed.configureTestingModule({imports:[HttpClientTestingModule]}));

  it('should be created', () => {
    const service: UserbarService = TestBed.get(UserbarService);
    expect(service).toBeTruthy();
  });
});