]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard/dashboard.component.spec.ts
update sources to ceph Nautilus 14.2.1
[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 { configureTestBed } from '../../../../testing/unit-test-helper';
5 import { DashboardComponent } from './dashboard.component';
6
7 describe('DashboardComponent', () => {
8 let component: DashboardComponent;
9 let fixture: ComponentFixture<DashboardComponent>;
10
11 configureTestBed({
12 declarations: [DashboardComponent],
13 schemas: [NO_ERRORS_SCHEMA]
14 });
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(DashboardComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25 });