aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_services/configuration.service.spec.ts
blob: 4b9322b597a28c63ff44db8e1d553bc8c77a27fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { TestBed } from '@angular/core/testing';

import { Configuration as ConfigurationService } from './configuration.service';

describe('ConfigurationService', () => {
  let service: ConfigurationService;

  beforeEach(() => {
    TestBed.configureTestingModule({});
    service = TestBed.inject(ConfigurationService);
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });
});