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