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

import  { GlobalPriceChart } from './global-price-chart';

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