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