storj/web/multinode/tests/unit/components/views/PayoutsByNode.spec.ts
Egon Elbre 5e24060b25 web/multinode: switch to eslint
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
2021-08-03 13:00:15 +03:00

36 lines
867 B
TypeScript

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
import Vuex from 'vuex';
import { Currency } from '@/app/utils/currency';
import PayoutsByNode from '@/app/views/payouts/PayoutsByNode.vue';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import store from '../../mock/store';
const localVue = createLocalVue();
localVue.use(Vuex);
localVue.filter('centsToDollars', (cents: number): string => Currency.dollarsFromCents(cents));
const $route = {
fullPath: '/payouts/by-node/1',
params: { id: '1' },
};
describe('PayoutsByNode', (): void => {
it('renders correctly', (): void => {
const wrapper = shallowMount(PayoutsByNode, {
store,
localVue,
mocks: {
$route,
},
});
expect(wrapper).toMatchSnapshot();
});
});