]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/layouts/blank-layout/blank-layout.component.spec.ts
faee6aa9b34fe7a6e8aa1791d248188c299e3522
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / layouts / blank-layout / blank-layout.component.spec.ts
1 import { ComponentFixture, TestBed } from '@angular/core/testing';
2 import { RouterTestingModule } from '@angular/router/testing';
3
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { BlankLayoutComponent } from './blank-layout.component';
6
7 describe('DefaultLayoutComponent', () => {
8 let component: BlankLayoutComponent;
9 let fixture: ComponentFixture<BlankLayoutComponent>;
10
11 configureTestBed({
12 declarations: [BlankLayoutComponent],
13 imports: [RouterTestingModule]
14 });
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(BlankLayoutComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25 });