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

import SupplierMapping from './supplier-mapping';

describe('SupplierMapping', () => {
  it('should render successfully', () => {
    const { baseElement } = render(
      <SupplierMapping isUpdate={false} isNewForm={false} closeForm={function (): void {
        throw new Error('Function not implemented.');
      } } />
    );
    expect(baseElement).toBeTruthy();
  });
});
