UIAngular/Client/src/app/components/popups/input-popup/input-popup.component.spec.ts

26 lines
661 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { InputPopupComponent } from './input-popup.component';
describe('InputPopupComponent', () => {
let component: InputPopupComponent;
let fixture: ComponentFixture<InputPopupComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ InputPopupComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(InputPopupComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});