2020-06-23 18:51:11 +01:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
|
2022-11-04 11:48:16 +00:00
|
|
|
import LoadingScreen from '@/app/components/LoadingScreen.vue';
|
|
|
|
|
2020-06-23 18:51:11 +01:00
|
|
|
describe('LoadingScreen', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(LoadingScreen);
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|