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