]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.spec.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / iscsi-tabs / iscsi-tabs.component.spec.ts
CommitLineData
11fdf7f2
TL
1import { ComponentFixture, TestBed } from '@angular/core/testing';
2import { RouterTestingModule } from '@angular/router/testing';
3
f67539c2 4import { NgbNavModule } from '@ng-bootstrap/ng-bootstrap';
11fdf7f2 5
f67539c2
TL
6import { SharedModule } from '~/app/shared/shared.module';
7import { configureTestBed } from '~/testing/unit-test-helper';
11fdf7f2
TL
8import { IscsiTabsComponent } from './iscsi-tabs.component';
9
10describe('IscsiTabsComponent', () => {
11 let component: IscsiTabsComponent;
12 let fixture: ComponentFixture<IscsiTabsComponent>;
13
14 configureTestBed({
f67539c2 15 imports: [SharedModule, RouterTestingModule, NgbNavModule],
11fdf7f2
TL
16 declarations: [IscsiTabsComponent]
17 });
18
19 beforeEach(() => {
20 fixture = TestBed.createComponent(IscsiTabsComponent);
21 component = fixture.componentInstance;
22 fixture.detectChanges();
23 });
24
25 it('should create', () => {
26 expect(component).toBeTruthy();
27 });
28});