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