8268933b56
Fixed web linter. Issue: https://github.com/storj/storj/issues/5158 Change-Id: Ia63e3e6e7352a99e902c9ed08a4bcfd75059e943
15 lines
385 B
TypeScript
15 lines
385 B
TypeScript
// Copyright (C) 2020 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
import LoadingScreen from '@/app/components/LoadingScreen.vue';
|
|
|
|
describe('LoadingScreen', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(LoadingScreen);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|