2021-04-30 10:33:36 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import { shallowMount } from '@vue/test-utils';
|
|
|
|
|
2022-11-04 11:57:05 +00:00
|
|
|
import PayoutHistoryBlock from '@/app/components/payouts/PayoutHistoryBlock.vue';
|
|
|
|
|
2021-04-30 10:33:36 +01:00
|
|
|
describe('PayoutHistoryBlock', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(PayoutHistoryBlock);
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|