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