2021-04-30 10:33:36 +01:00
|
|
|
// Copyright (C) 2021 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
|
|
|
import PayoutPeriodCalendarButton from '@/app/components/payouts/PayoutPeriodCalendarButton.vue';
|
|
|
|
|
|
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
2021-08-02 18:09:54 +01:00
|
|
|
|
2021-04-30 10:33:36 +01:00
|
|
|
localVue.use(Vuex);
|
|
|
|
|
|
|
|
describe('PayoutPeriodCalendarButton', (): void => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = shallowMount(PayoutPeriodCalendarButton, {
|
|
|
|
localVue,
|
|
|
|
propsData: {
|
|
|
|
period: 'April, 2021',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2021-08-02 18:09:54 +01:00
|
|
|
it('triggers open calendar correctly', async(): Promise<void> => {
|
2021-04-30 10:33:36 +01:00
|
|
|
const wrapper = shallowMount(PayoutPeriodCalendarButton, {
|
|
|
|
localVue,
|
|
|
|
propsData: {
|
|
|
|
period: 'April, 2021',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await wrapper.find('.calendar-button').trigger('click');
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|