storj/web/satellite/tests/unit/dashboard/account/AccountDropdown.spec.ts
Bogdan Artemenko f9fbda1ec5
Auth logic additions (#710)
* Added License reference at the beginning of each file
2018-11-27 12:51:33 +02:00

36 lines
826 B
TypeScript

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
import { shallowMount, mount } from '@vue/test-utils';
import AccountDropdown from '@/components/dashboard/account/AccountDropdown.vue';
import * as sinon from 'sinon';
describe('AccountDropdown.vue', () => {
it('renders correctly', () => {
const wrapper = shallowMount(AccountDropdown);
expect(wrapper).toMatchSnapshot();
});
it('trigger onPress correctly', () => {
let onCloseSpy = sinon.spy();
const wrapper = mount(AccountDropdown, {
propsData: {
onClose: onCloseSpy
},
mocks: {
$router: {
push: onCloseSpy
}
}
});
wrapper.find('.adItemContainer.settings').trigger('click');
expect(onCloseSpy.callCount).toBe(1);
expect(wrapper.emitted("onClose").length).toEqual(1);
});
});