b387c6b90c
Change-Id: I66a8e17635040730906bd6f9c20924abd0db0744
15 lines
384 B
TypeScript
15 lines
384 B
TypeScript
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import OverviewArea from '@/components/overview/OverviewArea.vue';
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
describe('OverviewArea.vue', () => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(OverviewArea);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|