import { ComponentFixture, TestBed } from '@angular/core/testing'; import { ProfilePage } from './profile.page'; describe('ProfilePage', () => { let component: ProfilePage; let fixture: ComponentFixture; beforeEach(() => { fixture = TestBed.createComponent(ProfilePage); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });