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

import PlanningDashboard from './planning-dashboard';

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