import React from 'react';
import { render } from '@testing-library/react';
import { PurchasesForm} from './purchases'

describe('Purchases', () => {
  it('should render successfully', () => {
    const { baseElement } = render(<PurchasesForm/>);
    expect(baseElement).toBeTruthy();
  });
});
