]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/create-cluster/create-cluster-review.component.spec.ts
import quincy beta 17.1.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / create-cluster / create-cluster-review.component.spec.ts
1 import { HttpClientTestingModule } from '@angular/common/http/testing';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import _ from 'lodash';
5 import { ToastrModule } from 'ngx-toastr';
6
7 import { CephModule } from '~/app/ceph/ceph.module';
8 import { CoreModule } from '~/app/core/core.module';
9 import { SharedModule } from '~/app/shared/shared.module';
10 import { configureTestBed } from '~/testing/unit-test-helper';
11 import { CreateClusterReviewComponent } from './create-cluster-review.component';
12
13 describe('CreateClusterReviewComponent', () => {
14 let component: CreateClusterReviewComponent;
15 let fixture: ComponentFixture<CreateClusterReviewComponent>;
16
17 configureTestBed({
18 imports: [HttpClientTestingModule, SharedModule, ToastrModule.forRoot(), CephModule, CoreModule]
19 });
20
21 beforeEach(() => {
22 fixture = TestBed.createComponent(CreateClusterReviewComponent);
23 component = fixture.componentInstance;
24 });
25
26 it('should create', () => {
27 expect(component).toBeTruthy();
28 });
29 });