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

import IndentFromForPreparedMaterial from './indent-from-for-prepared-material';

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