2021-04-30 10:33:36 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
|
|
|
import DetailsArea from '@/app/components/payouts/DetailsArea.vue';
|
|
|
|
|
|
|
|
import { Currency } from '@/app/utils/currency';
|
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
|
|
|
|
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('DetailsArea', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(DetailsArea, {
|
|
|
|
localVue,
|
|
|
|
propsData: {
|
|
|
|
totalEarned: 5000,
|
|
|
|
totalPaid: 60000,
|
|
|
|
totalHeld: 700,
|
|
|
|
period: 'April, 2021',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|