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