a342edd1c2
Fixed web linter Issue: https://github.com/storj/storj/issues/5158 Change-Id: Ibc0b8e9f241e77e833645d9fa114bf5742c9f81c
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
// Copyright (C) 2021 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
import Vuex from 'vuex';
|
|
import { createLocalVue, shallowMount } from '@vue/test-utils';
|
|
|
|
import PayoutPeriodCalendarButton from '@/app/components/payouts/PayoutPeriodCalendarButton.vue';
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
describe('PayoutPeriodCalendarButton', (): void => {
|
|
it('renders correctly', (): void => {
|
|
const wrapper = shallowMount(PayoutPeriodCalendarButton, {
|
|
localVue,
|
|
propsData: {
|
|
period: 'April, 2021',
|
|
},
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it('triggers open calendar correctly', async(): Promise<void> => {
|
|
const wrapper = shallowMount(PayoutPeriodCalendarButton, {
|
|
localVue,
|
|
propsData: {
|
|
period: 'April, 2021',
|
|
},
|
|
});
|
|
|
|
await wrapper.find('.calendar-button').trigger('click');
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|