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

54 lines
1.4 KiB
JavaScript
Raw Normal View History

/* eslint-disable space-before-function-paren, no-var */
import '~/header';
import '~/lib/utils/text_utility';
2016-08-08 21:19:46 +00:00
(function() {
describe('Header', function() {
var todosPendingCount = '.todos-count';
var fixtureTemplate = 'issues/open-issue.html.raw';
2016-08-08 21:19:46 +00:00
function isTodosCountHidden() {
return $(todosPendingCount).hasClass('hidden');
}
function triggerToggle(newCount) {
$(document).trigger('todo:toggle', newCount);
}
preloadFixtures(fixtureTemplate);
2016-08-08 21:19:46 +00:00
beforeEach(function() {
loadFixtures(fixtureTemplate);
2016-08-08 21:19:46 +00:00
});
it('should update todos-count after receiving the todo:toggle event', function() {
2016-08-08 21:19:46 +00:00
triggerToggle(5);
expect($(todosPendingCount).text()).toEqual('5');
});
it('should hide todos-count when it is 0', function() {
2016-08-08 21:19:46 +00:00
triggerToggle(0);
expect(isTodosCountHidden()).toEqual(true);
});
it('should show todos-count when it is more than 0', function() {
2016-08-08 21:19:46 +00:00
triggerToggle(10);
expect(isTodosCountHidden()).toEqual(false);
});
describe('when todos-count is 1000', function() {
2016-08-08 21:19:46 +00:00
beforeEach(function() {
triggerToggle(1000);
});
it('should show todos-count', function() {
2016-08-08 21:19:46 +00:00
expect(isTodosCountHidden()).toEqual(false);
});
it('should show 99+ for todos-count', function() {
expect($(todosPendingCount).text()).toEqual('99+');
2016-08-08 21:19:46 +00:00
});
});
});
}).call(window);