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