storj/web/multinode/tests/unit/components/views/PayoutsPage.spec.ts
NickolaiYurchenko c0b170149d web/multinode: wallets page markup
Change-Id: I01cb973196d4be8d5cc959a3129c238236736538
2021-06-08 18:47:43 +03:00

24 lines
570 B
TypeScript

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
import Vuex from 'vuex';
import PayoutsPage from '@/app/views/payouts/PayoutsPage.vue';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import store from '../../mock/store';
const localVue = createLocalVue();
localVue.use(Vuex);
describe('PayoutsPage', (): void => {
it('renders correctly', (): void => {
const wrapper = shallowMount(PayoutsPage, {
store,
localVue,
});
expect(wrapper).toMatchSnapshot();
});
});