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