storj/web/multinode/tests/unit/components/payouts/HeldHistory.spec.ts
Vitalii a342edd1c2 web/multinode: fixed linter
Fixed web linter

Issue:
https://github.com/storj/storj/issues/5158

Change-Id: Ibc0b8e9f241e77e833645d9fa114bf5742c9f81c
2022-11-04 19:06:21 +00:00

33 lines
973 B
TypeScript

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
import Vuex from 'vuex';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import { Currency } from '@/app/utils/currency';
import { HeldAmountSummary } from '@/payouts';
import HeldHistory from '@/app/components/payouts/tables/heldHistory/HeldHistory.vue';
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();
});
});