2020-06-10 12:42:44 +01:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2020-07-03 12:25:53 +01:00
|
|
|
import HistoryDropdown from '@/components/account/billing/HistoryDropdown.vue';
|
2020-06-10 12:42:44 +01:00
|
|
|
|
2021-11-15 13:42:10 +00:00
|
|
|
import { RouteConfig } from '@/router';
|
2020-06-10 12:42:44 +01:00
|
|
|
import { createLocalVue, mount } from '@vue/test-utils';
|
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
|
2020-07-03 12:25:53 +01:00
|
|
|
describe('HistoryDropdown', (): void => {
|
|
|
|
it('renders correctly if credit history', (): void => {
|
|
|
|
const creditsHistory: string = RouteConfig.Account.with(RouteConfig.CreditsHistory).path;
|
|
|
|
const wrapper = mount(HistoryDropdown, {
|
2020-06-10 12:42:44 +01:00
|
|
|
localVue,
|
2020-07-03 12:25:53 +01:00
|
|
|
propsData: {
|
|
|
|
label: 'Credits History',
|
2020-09-15 18:05:26 +01:00
|
|
|
route: creditsHistory,
|
2020-07-03 12:25:53 +01:00
|
|
|
},
|
2021-11-15 13:42:10 +00:00
|
|
|
directives: {
|
|
|
|
clickOutside: {},
|
|
|
|
},
|
2020-07-03 12:25:53 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders correctly if balance history', (): void => {
|
|
|
|
const balanceHistory: string = RouteConfig.Account.with(RouteConfig.DepositHistory).path;
|
|
|
|
const wrapper = mount(HistoryDropdown, {
|
|
|
|
localVue,
|
|
|
|
propsData: {
|
|
|
|
label: 'Balance History',
|
2020-09-15 18:05:26 +01:00
|
|
|
route: balanceHistory,
|
2020-07-03 12:25:53 +01:00
|
|
|
},
|
2021-11-15 13:42:10 +00:00
|
|
|
directives: {
|
|
|
|
clickOutside: {},
|
2020-06-10 12:42:44 +01:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2021-11-15 13:42:10 +00:00
|
|
|
expect(wrapper).toMatchSnapshot();
|
2020-06-10 12:42:44 +01:00
|
|
|
});
|
|
|
|
});
|