// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import React from 'react'; import {shallow} from 'enzyme'; import StatisticCount from 'components/analytics/statistic_count.jsx'; describe('components/analytics/statistic_count.jsx', () => { test('should match snapshot, on loading', () => { const wrapper = shallow( ); expect(wrapper).toMatchSnapshot(); }); test('should match snapshot, loaded', () => { const wrapper = shallow( ); expect(wrapper).toMatchSnapshot(); }); });