summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/custom-login-banner/custom-login-banner.component.spec.ts
blob: 6005cbd0bae6e7eab59449c2a9c8bd0f9f66162d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { HttpClientTestingModule } from '@angular/common/http/testing';
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { configureTestBed } from '~/testing/unit-test-helper';
import { CustomLoginBannerComponent } from './custom-login-banner.component';

describe('CustomLoginBannerComponent', () => {
  let component: CustomLoginBannerComponent;
  let fixture: ComponentFixture<CustomLoginBannerComponent>;

  configureTestBed({
    declarations: [CustomLoginBannerComponent],
    imports: [HttpClientTestingModule]
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(CustomLoginBannerComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});