2017-10-31 12:15:03 -04:00
|
|
|
import Vue from 'vue';
|
|
|
|
import sidebarSubscriptions from '~/sidebar/components/subscriptions/sidebar_subscriptions.vue';
|
|
|
|
import SidebarMediator from '~/sidebar/sidebar_mediator';
|
|
|
|
import SidebarService from '~/sidebar/services/sidebar_service';
|
|
|
|
import SidebarStore from '~/sidebar/stores/sidebar_store';
|
|
|
|
import eventHub from '~/sidebar/event_hub';
|
|
|
|
import mountComponent from '../helpers/vue_mount_component_helper';
|
|
|
|
import Mock from './mock_data';
|
|
|
|
|
|
|
|
describe('Sidebar Subscriptions', function () {
|
|
|
|
let vm;
|
|
|
|
let SidebarSubscriptions;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
SidebarSubscriptions = Vue.extend(sidebarSubscriptions);
|
|
|
|
// Setup the stores, services, etc
|
|
|
|
// eslint-disable-next-line no-new
|
|
|
|
new SidebarMediator(Mock.mediator);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
SidebarService.singleton = null;
|
|
|
|
SidebarStore.singleton = null;
|
|
|
|
SidebarMediator.singleton = null;
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls the mediator toggleSubscription on event', () => {
|
2017-12-07 12:37:33 -05:00
|
|
|
const mediator = new SidebarMediator();
|
|
|
|
spyOn(mediator, 'toggleSubscription').and.returnValue(Promise.resolve());
|
|
|
|
vm = mountComponent(SidebarSubscriptions, {
|
|
|
|
mediator,
|
|
|
|
});
|
2017-10-31 12:15:03 -04:00
|
|
|
|
|
|
|
eventHub.$emit('toggleSubscription');
|
|
|
|
|
2017-12-07 12:37:33 -05:00
|
|
|
expect(mediator.toggleSubscription).toHaveBeenCalled();
|
2017-10-31 12:15:03 -04:00
|
|
|
});
|
|
|
|
});
|