summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/host/host.service.spec.ts
blob: 048be8005c5aa437d75efc90312ba4dbf383ad6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { TestBed, inject } from '@angular/core/testing';

import { HostService } from './host.service';

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

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