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