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

import PagesFinanceCollections from './collections';

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