2020-05-08 12:07:24 +01:00
|
|
|
// Copyright (C) 2020 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
|
|
|
import sinon from 'sinon';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
|
2020-09-22 15:12:36 +01:00
|
|
|
import AccountDropdown from '@/components/header/accountDropdown/AccountDropdown.vue';
|
2020-05-08 12:07:24 +01:00
|
|
|
|
|
|
|
import { RouteConfig, router } from '@/router';
|
|
|
|
import { appStateModule } from '@/store/modules/appState';
|
|
|
|
import { createLocalVue, mount } from '@vue/test-utils';
|
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
|
|
|
|
const store = new Vuex.Store({ modules: { appStateModule }});
|
|
|
|
|
|
|
|
describe('AccountDropdown', () => {
|
|
|
|
it('renders correctly', (): void => {
|
|
|
|
const wrapper = mount(AccountDropdown, {
|
|
|
|
store,
|
|
|
|
localVue,
|
|
|
|
router,
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('router works correctly', async (): Promise<void> => {
|
|
|
|
const routerSpy = sinon.spy();
|
|
|
|
const wrapper = mount(AccountDropdown, {
|
|
|
|
store,
|
|
|
|
localVue,
|
|
|
|
router,
|
|
|
|
});
|
|
|
|
|
2020-09-15 18:05:26 +01:00
|
|
|
wrapper.vm.onLogoutClick = routerSpy;
|
|
|
|
|
2020-09-22 15:12:36 +01:00
|
|
|
await wrapper.find('.account-dropdown__wrap__item-container').trigger('click');
|
2020-05-08 12:07:24 +01:00
|
|
|
|
|
|
|
expect(routerSpy.callCount).toBe(1);
|
|
|
|
});
|
|
|
|
});
|