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

import StoreConsumptionDetailView from './store-consumption-detail-view';

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