20b98d31b8
added displaying of undistributed balance and current month expectations contains changes from https://review.dev.storj.io/c/storj/storj/+/4867 to be workable Change-Id: I9cb00d2db5b819a71ceeddf91d6863a6b4fa9034
31 lines
804 B
TypeScript
31 lines
804 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import BalanceArea from '@/app/components/payouts/BalanceArea.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('BalanceArea', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(BalanceArea, {
|
|
localVue,
|
|
propsData: {
|
|
currentMonthEstimation: 66000,
|
|
undistributed: 1000,
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|