gitlab-org--gitlab-foss/spec/javascripts/header_spec.js

54 lines
1.2 KiB
JavaScript
Raw Normal View History

import $ from 'jquery';
2017-10-30 19:50:17 +00:00
import initTodoToggle from '~/header';
2016-08-08 21:19:46 +00:00
2018-10-17 07:13:26 +00:00
describe('Header', function() {
const todosPendingCount = '.todos-count';
const fixtureTemplate = 'issues/open-issue.html';
2016-08-08 21:19:46 +00:00
function isTodosCountHidden() {
return $(todosPendingCount).hasClass('hidden');
}
2016-08-08 21:19:46 +00:00
function triggerToggle(newCount) {
$(document).trigger('todo:toggle', newCount);
}
2016-08-08 21:19:46 +00:00
preloadFixtures(fixtureTemplate);
beforeEach(() => {
2017-10-30 19:50:17 +00:00
initTodoToggle();
loadFixtures(fixtureTemplate);
});
2016-08-08 21:19:46 +00:00
it('should update todos-count after receiving the todo:toggle event', () => {
triggerToggle(5);
2018-10-09 18:03:09 +00:00
expect($(todosPendingCount).text()).toEqual('5');
});
2016-08-08 21:19:46 +00:00
it('should hide todos-count when it is 0', () => {
triggerToggle(0);
2018-10-09 18:03:09 +00:00
expect(isTodosCountHidden()).toEqual(true);
});
it('should show todos-count when it is more than 0', () => {
triggerToggle(10);
2018-10-09 18:03:09 +00:00
expect(isTodosCountHidden()).toEqual(false);
});
describe('when todos-count is 1000', () => {
beforeEach(() => {
triggerToggle(1000);
2016-08-08 21:19:46 +00:00
});
it('should show todos-count', () => {
2016-08-08 21:19:46 +00:00
expect(isTodosCountHidden()).toEqual(false);
});
it('should show 99+ for todos-count', () => {
expect($(todosPendingCount).text()).toEqual('99+');
2016-08-08 21:19:46 +00:00
});
});
});