forked from Ivasoft/mattermost-mobile
17 lines
401 B
TypeScript
17 lines
401 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
import {renderWithIntlAndTheme} from '@test/intl-test-helper';
|
|
|
|
import Loading from './index';
|
|
|
|
test('Loading should match snapshot', () => {
|
|
const {toJSON} = renderWithIntlAndTheme(
|
|
<Loading/>,
|
|
);
|
|
|
|
expect(toJSON()).toMatchSnapshot();
|
|
});
|