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

import PagesDashboardDashboardComponentsLotCodeDashboard from './pages-dashboard-dashboard-components-lot-code-dashboard';

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