2021-04-30 10:33:36 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
2021-05-25 21:14:01 +01:00
|
|
|
import PayoutsPage from '@/app/views/payouts/PayoutsPage.vue';
|
2021-04-30 10:33:36 +01:00
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
|
|
|
|
import store from '../../mock/store';
|
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
2021-08-02 18:09:54 +01:00
|
|
|
|
2021-04-30 10:33:36 +01:00
|
|
|
localVue.use(Vuex);
|
|
|
|
|
|
|
|
describe('PayoutsPage', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(PayoutsPage, {
|
|
|
|
store,
|
|
|
|
localVue,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|