5e24060b25
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
25 lines
571 B
TypeScript
25 lines
571 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import PayoutsPage from '@/app/views/payouts/PayoutsPage.vue';
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
import store from '../../mock/store';
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
describe('PayoutsPage', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(PayoutsPage, {
|
|
store,
|
|
localVue,
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|