]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/blob
b8350485b3be0b25f168126804a953cda07feb58
[ceph-ci.git] /
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 });