storj/web/multinode/tests/unit/components/payouts/DetailsArea.spec.ts

33 lines
860 B
TypeScript
Raw Normal View History

// 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();
localVue.use(Vuex);
localVue.filter('centsToDollars', (cents: number): string => {
return Currency.dollarsFromCents(cents);
});
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();
});
});