]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-bar.component.spec.ts
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / usage-bar / usage-bar.component.spec.ts
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { TooltipModule } from 'ngx-bootstrap/tooltip';
4
5 import { configureTestBed } from '../../../../testing/unit-test-helper';
6 import { PipesModule } from '../../pipes/pipes.module';
7 import { ServicesModule } from '../../services/services.module';
8 import { UsageBarComponent } from './usage-bar.component';
9
10 describe('UsageBarComponent', () => {
11 let component: UsageBarComponent;
12 let fixture: ComponentFixture<UsageBarComponent>;
13
14 configureTestBed({
15 imports: [PipesModule, ServicesModule, TooltipModule.forRoot()],
16 declarations: [UsageBarComponent]
17 });
18
19 beforeEach(() => {
20 fixture = TestBed.createComponent(UsageBarComponent);
21 component = fixture.componentInstance;
22 fixture.detectChanges();
23 });
24
25 it('should create', () => {
26 expect(component).toBeTruthy();
27 });
28 });