storj/web/multinode/tests/unit/components/payouts/HeldHistory.spec.ts
NickolaiYurchenko 8c0a0f019c web/multinode: payouts by node
vuex store types added, markup and logic connected, unused components hidden, tests added

Change-Id: I42c573be3d05fc13521033b089f3f2d3126c36f8
2021-06-03 15:04:59 +00:00

34 lines
988 B
TypeScript

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
import Vuex from 'vuex';
import HeldHistory from '@/app/components/payouts/tables/heldHistory/HeldHistory.vue';
import { Currency } from '@/app/utils/currency';
import { HeldAmountSummary } from '@/payouts';
import { createLocalVue, shallowMount } from '@vue/test-utils';
const localVue = createLocalVue();
localVue.use(Vuex);
localVue.filter('centsToDollars', (cents: number): string => {
return Currency.dollarsFromCents(cents);
});
describe('HeldHistory', (): void => {
it('renders correctly', (): void => {
const heldHistory = [
new HeldAmountSummary('satelliteName', 100000, 200000, 300000, 10),
new HeldAmountSummary('satelliteName', 200000, 300000, 400000, 20),
];
const wrapper = shallowMount(HeldHistory, {
localVue,
propsData: { heldHistory },
});
expect(wrapper).toMatchSnapshot();
});
});