storj/web/multinode/tests/unit/components/payouts/PayoutHistoryBlock.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

15 lines
413 B
TypeScript

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