storj/web/satellite/tests/unit/overview/OverviewArea.spec.ts
VitaliiShpital 54dbc5173d web/satellite: limits info bar added to billing page, free credit amount changed
Change-Id: I08f52e5dab16f5d176a909b29952718891f406d5
2020-03-16 14:54:46 +00:00

18 lines
438 B
TypeScript

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
import OverviewArea from '@/components/overview/OverviewArea.vue';
import { router } from '@/router';
import { mount } from '@vue/test-utils';
describe('OverviewArea.vue', () => {
it('renders correctly', (): void => {
const wrapper = mount(OverviewArea, {
router,
});
expect(wrapper).toMatchSnapshot();
});
});