storj/web/multinode/tests/unit/components/payouts/PayoutHistoryBlock.spec.ts

15 lines
413 B
TypeScript
Raw Normal View History

// 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();
});
});