e0f3166343
WHAT: unit tests for vue components and vuex store and environment for it WHY: to cover frontend part with tests Change-Id: I2aeaadb200176d4ba0a1406068304785e95d92cd
24 lines
562 B
TypeScript
24 lines
562 B
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import PayoutsPage from '@/app/views/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();
|
|
});
|
|
});
|