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

import UnitCodeForm from './unit-code-form';

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