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