2021-04-30 10:33:36 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import Vuex from 'vuex';
|
2022-11-04 11:57:05 +00:00
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
2021-04-30 10:33:36 +01:00
|
|
|
|
|
|
|
import { Currency } from '@/app/utils/currency';
|
|
|
|
import { NodePayoutsSummary } from '@/payouts';
|
2022-11-04 11:57:05 +00:00
|
|
|
|
|
|
|
import PayoutsSummaryItem from '@/app/components/payouts/tables/payoutSummary/PayoutsSummaryItem.vue';
|
2021-04-30 10:33:36 +01:00
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
2021-08-02 18:09:54 +01:00
|
|
|
|
2021-04-30 10:33:36 +01:00
|
|
|
localVue.use(Vuex);
|
|
|
|
|
2021-08-02 18:09:54 +01:00
|
|
|
localVue.filter('centsToDollars', (cents: number): string => Currency.dollarsFromCents(cents));
|
2021-04-30 10:33:36 +01:00
|
|
|
|
|
|
|
describe('PayoutsSummaryItem', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const payoutsSummary = new NodePayoutsSummary('1', 'name1', 5000, 4000);
|
|
|
|
|
|
|
|
const wrapper = shallowMount(PayoutsSummaryItem, {
|
|
|
|
localVue,
|
|
|
|
propsData: { payoutsSummary },
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|