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