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

import DashboardProjects from './dashboard-projects';

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