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

import PagesMasterMasterComponentsFarmers from './farmers-excel-upload';

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