import Vue from 'vue'; import store from '~/ide/stores'; import ideStatusBar from '~/ide/components/ide_status_bar.vue'; import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper'; import { resetStore } from '../helpers'; import { projectData } from '../mock_data'; describe('ideStatusBar', () => { let vm; beforeEach(() => { const Component = Vue.extend(ideStatusBar); store.state.currentProjectId = 'abcproject'; store.state.projects.abcproject = projectData; vm = createComponentWithStore(Component, store).$mount(); }); afterEach(() => { vm.$destroy(); resetStore(vm.$store); }); it('renders the statusbar', () => { expect(vm.$el.className).toBe('ide-status-bar'); }); describe('mounted', () => { it('triggers a setInterval', () => { expect(vm.intervalId).not.toBe(null); }); }); describe('commitAgeUpdate', () => { beforeEach(function() { jasmine.clock().install(); spyOn(vm, 'commitAgeUpdate').and.callFake(() => {}); vm.startTimer(); }); afterEach(function() { jasmine.clock().uninstall(); }); it('gets called every second', () => { expect(vm.commitAgeUpdate).not.toHaveBeenCalled(); jasmine.clock().tick(1100); expect(vm.commitAgeUpdate.calls.count()).toEqual(1); jasmine.clock().tick(1000); expect(vm.commitAgeUpdate.calls.count()).toEqual(2); }); }); describe('getCommitPath', () => { it('returns the path to the commit details', () => { expect(vm.getCommitPath('abc123de')).toBe('/commit/abc123de'); }); }); });