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