summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/homes.service.spec.ts
blob: 9c03dcb261650708a65726ab1263f32bb063f443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { TestBed, inject } from '@angular/core/testing';

import { HomesService } from './homes.service';

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

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