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