aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/@core-xds/services/config.service.spec.ts
blob: f39b9d96a092f5c53cdd9a7d272f94d7da94d005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { TestBed, inject } from '@angular/core/testing';

import { ConfigService } from './config.service';

describe('ConfigService', () => {
  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [ConfigService],
    });
  });

  it('should be created', inject([ConfigService], (service: ConfigService) => {
    expect(service).toBeTruthy();
  }));
});