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

import RmPriceListForm from './rm-price-list-form';

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