2021-05-31 16:40:04 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
|
|
|
import PayoutsByNodeTable from '@/app/components/payouts/tables/payoutsByNode/PayoutsByNodeTable.vue';
|
|
|
|
|
|
|
|
import { Currency } from '@/app/utils/currency';
|
|
|
|
import { Paystub } from '@/payouts';
|
|
|
|
import { Size } from '@/private/memory/size';
|
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
|
|
|
localVue.filter('bytesToBase10String', (amountInBytes: number): string => Size.toBase10String(amountInBytes));
|
2021-05-31 16:40:04 +01:00
|
|
|
|
|
|
|
describe('PayoutsByNodeTable', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const paystub = new Paystub(3000, 4000, 5000, 6000,
|
|
|
|
50000, 60000, 70000, 80000, 90000, 100000, 110000);
|
|
|
|
|
|
|
|
const wrapper = shallowMount(PayoutsByNodeTable, {
|
|
|
|
localVue,
|
|
|
|
propsData: { paystub },
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|