8c0a0f019c
vuex store types added, markup and logic connected, unused components hidden, tests added Change-Id: I42c573be3d05fc13521033b089f3f2d3126c36f8
37 lines
874 B
TypeScript
37 lines
874 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import { Currency } from '@/app/utils/currency';
|
|
import PayoutsByNode from '@/app/views/PayoutsByNode.vue';
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
import store from '../../mock/store';
|
|
|
|
const localVue = createLocalVue();
|
|
localVue.use(Vuex);
|
|
|
|
localVue.filter('centsToDollars', (cents: number): string => {
|
|
return Currency.dollarsFromCents(cents);
|
|
});
|
|
|
|
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();
|
|
});
|
|
});
|