]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/administration/administration.component.spec.ts
29392785bca3debe459a186684d95fed3ee72a8f
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / navigation / administration / administration.component.spec.ts
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { SharedModule } from '~/app/shared/shared.module';
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { AdministrationComponent } from './administration.component';
6
7 describe('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 });