storj/web/multinode/tests/unit/components/payouts/PayoutPeriodCalendarButton.spec.ts
Egon Elbre 5e24060b25 web/multinode: switch to eslint
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
2021-08-03 13:00:15 +03:00

39 lines
1.0 KiB
TypeScript

// 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();
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();
});
});