2021-05-31 16:40:04 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
|
|
|
import { Currency } from '@/app/utils/currency';
|
2021-05-25 21:14:01 +01:00
|
|
|
import PayoutsByNode from '@/app/views/payouts/PayoutsByNode.vue';
|
2021-05-31 16:40:04 +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-05-31 16:40:04 +01:00
|
|
|
localVue.use(Vuex);
|
|
|
|
|
2021-08-02 18:09:54 +01:00
|
|
|
localVue.filter('centsToDollars', (cents: number): string => Currency.dollarsFromCents(cents));
|
2021-05-31 16:40:04 +01:00
|
|
|
|
|
|
|
const $route = {
|
|
|
|
fullPath: '/payouts/by-node/1',
|
|
|
|
params: { id: '1' },
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('PayoutsByNode', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(PayoutsByNode, {
|
|
|
|
store,
|
|
|
|
localVue,
|
|
|
|
mocks: {
|
|
|
|
$route,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|