5e24060b25
tslint has been deprecated so it's nice to switch to eslint. Currently this uses a minimal eslint, to get things up and running. Change-Id: If0ca6413b534b0aa15f6130a0a809e002d817356
33 lines
973 B
TypeScript
33 lines
973 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import HeldHistory from '@/app/components/payouts/tables/heldHistory/HeldHistory.vue';
|
|
|
|
import { Currency } from '@/app/utils/currency';
|
|
import { HeldAmountSummary } from '@/payouts';
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
localVue.filter('centsToDollars', (cents: number): string => Currency.dollarsFromCents(cents));
|
|
|
|
describe('HeldHistory', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const heldHistory = [
|
|
new HeldAmountSummary('satelliteName', 100000, 200000, 300000, 10),
|
|
new HeldAmountSummary('satelliteName', 200000, 300000, 400000, 20),
|
|
];
|
|
|
|
const wrapper = shallowMount(HeldHistory, {
|
|
localVue,
|
|
propsData: { heldHistory },
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|