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

import BeheadingInventoryGrid from './beheading-inventory-grid';

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