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

import { UtilsService } from './utils.service';
import { HttpClientTestingModule } from '@angular/common/http/testing';

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

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