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