diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-20 15:07:34 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2019-12-20 15:07:34 +0000 |
commit | 8b61452138ecc511b52cd49be4ee6b8a80390c50 (patch) | |
tree | 122b817432c2a0f0e23767bd95791a89b20540c0 /spec/frontend/header_spec.js | |
parent | f864f8a7aafa45b0e4c04e4312f89da4b1227c0f (diff) | |
download | gitlab-ce-8b61452138ecc511b52cd49be4ee6b8a80390c50.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/header_spec.js')
-rw-r--r-- | spec/frontend/header_spec.js | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/spec/frontend/header_spec.js b/spec/frontend/header_spec.js new file mode 100644 index 00000000000..00b5b306d66 --- /dev/null +++ b/spec/frontend/header_spec.js @@ -0,0 +1,53 @@ +import $ from 'jquery'; +import initTodoToggle from '~/header'; + +describe('Header', () => { + const todosPendingCount = '.todos-count'; + const fixtureTemplate = 'issues/open-issue.html'; + + function isTodosCountHidden() { + return $(todosPendingCount).hasClass('hidden'); + } + + function triggerToggle(newCount) { + $(document).trigger('todo:toggle', newCount); + } + + preloadFixtures(fixtureTemplate); + beforeEach(() => { + initTodoToggle(); + loadFixtures(fixtureTemplate); + }); + + it('should update todos-count after receiving the todo:toggle event', () => { + triggerToggle(5); + + expect($(todosPendingCount).text()).toEqual('5'); + }); + + it('should hide todos-count when it is 0', () => { + triggerToggle(0); + + expect(isTodosCountHidden()).toEqual(true); + }); + + it('should show todos-count when it is more than 0', () => { + triggerToggle(10); + + expect(isTodosCountHidden()).toEqual(false); + }); + + describe('when todos-count is 1000', () => { + beforeEach(() => { + triggerToggle(1000); + }); + + it('should show todos-count', () => { + expect(isTodosCountHidden()).toEqual(false); + }); + + it('should show 99+ for todos-count', () => { + expect($(todosPendingCount).text()).toEqual('99+'); + }); + }); +}); |