]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/form-button-panel/form-button-panel.component.spec.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / form-button-panel / form-button-panel.component.spec.ts
1 import { NO_ERRORS_SCHEMA } from '@angular/core';
2 import { ComponentFixture, TestBed } from '@angular/core/testing';
3
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { FormButtonPanelComponent } from './form-button-panel.component';
6
7 describe('FormButtonPanelComponent', () => {
8 let component: FormButtonPanelComponent;
9 let fixture: ComponentFixture<FormButtonPanelComponent>;
10
11 configureTestBed({
12 declarations: [FormButtonPanelComponent],
13 schemas: [NO_ERRORS_SCHEMA]
14 });
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(FormButtonPanelComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25 });