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

26 lines
661 B
TypeScript

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