]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
b2d3d0e06678c9fcdbae20dc6e93f6abfa8543de
[ceph.git] /
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { PopoverModule } from 'ngx-bootstrap';
5
6 import { SharedModule } from '../../../shared/shared.module';
7 import { configureTestBed } from '../../../shared/unit-test-helper';
8 import { TaskManagerComponent } from './task-manager.component';
9
10 describe('TaskManagerComponent', () => {
11   let component: TaskManagerComponent;
12   let fixture: ComponentFixture<TaskManagerComponent>;
13
14   configureTestBed({
15     imports: [SharedModule, PopoverModule.forRoot(), HttpClientTestingModule],
16     declarations: [TaskManagerComponent]
17   });
18
19   beforeEach(() => {
20     fixture = TestBed.createComponent(TaskManagerComponent);
21     component = fixture.componentInstance;
22     fixture.detectChanges();
23   });
24
25   it('should create', () => {
26     expect(component).toBeTruthy();
27   });
28 });