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

import { AuditLogService } from './audit-log.service';
import { HttpClientTestingModule} from '@angular/common/http/testing';

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

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