Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/services/event-display.service.spec.ts is written in an unsupported language. File is not indexed.

0001 import { TestBed } from '@angular/core/testing';
0002 
0003 import { EventDisplayService } from './event-display.service';
0004 import {HttpClientTestingModule, provideHttpClientTesting} from "@angular/common/http/testing";
0005 import {importProvidersFrom} from "@angular/core";
0006 import {HttpClient, HttpClientModule, provideHttpClient, withInterceptorsFromDi} from "@angular/common/http";
0007 
0008 describe('EventDisplayService', () => {
0009   let service: EventDisplayService;
0010 
0011   beforeEach(() => {
0012     TestBed.configureTestingModule({
0013         providers: [
0014           provideHttpClient(withInterceptorsFromDi()),
0015           provideHttpClientTesting(),
0016         ]
0017     });
0018     service = TestBed.inject(EventDisplayService);
0019   });
0020 
0021   it('should be created', () => {
0022     expect(service).toBeTruthy();
0023   });
0024 });