storj/web/multinode/tests/unit/components/payouts/PayoutHistoryBlock.spec.ts
NickolaiYurchenko e0f3166343 web/multinode: store and payouts components tests added
WHAT: unit tests for vue components and vuex store and environment for it

WHY: to cover frontend part with tests

Change-Id: I2aeaadb200176d4ba0a1406068304785e95d92cd
2021-05-14 12:45:10 +00:00

15 lines
413 B
TypeScript

// Copyright (C) 2021 Storj Labs, Inc.
// See LICENSE for copying information.
import PayoutHistoryBlock from '@/app/components/payouts/PayoutHistoryBlock.vue';
import { shallowMount } from '@vue/test-utils';
describe('PayoutHistoryBlock', (): void => {
it('renders correctly', (): void => {
const wrapper = shallowMount(PayoutHistoryBlock);
expect(wrapper).toMatchSnapshot();
});
});