import { ComponentFixture, TestBed } from '@angular/core/testing';

import { PurchasesTabComponent } from './purchases-tab.component';

describe('PurchasesTabComponent', () => {
  let component: PurchasesTabComponent;
  let fixture: ComponentFixture<PurchasesTabComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ PurchasesTabComponent ]
    })
    .compileComponents();

    fixture = TestBed.createComponent(PurchasesTabComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});
