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

import Subcontractors from './subcontractors';

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