6c5d948b82
Change-Id: I7d966d2dfba1c275d98259eb7b368297559f9f2d
15 lines
385 B
TypeScript
15 lines
385 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import LoadingScreen from '@/app/components/LoadingScreen.vue';
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
describe('LoadingScreen', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(LoadingScreen);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|