BigW Consortium Gitlab

header_spec.js 1.23 KB
Newer Older
Filipa Lacerda committed
1
import initTodoToggle from '~/header';
Clement Ho committed
2

3 4 5
describe('Header', function () {
  const todosPendingCount = '.todos-count';
  const fixtureTemplate = 'issues/open-issue.html.raw';
Clement Ho committed
6

7 8 9
  function isTodosCountHidden() {
    return $(todosPendingCount).hasClass('hidden');
  }
Clement Ho committed
10

11 12 13
  function triggerToggle(newCount) {
    $(document).trigger('todo:toggle', newCount);
  }
Clement Ho committed
14

15 16
  preloadFixtures(fixtureTemplate);
  beforeEach(() => {
Filipa Lacerda committed
17
    initTodoToggle();
18 19
    loadFixtures(fixtureTemplate);
  });
Clement Ho committed
20

21 22 23 24
  it('should update todos-count after receiving the todo:toggle event', () => {
    triggerToggle('5');
    expect($(todosPendingCount).text()).toEqual('5');
  });
Clement Ho committed
25

26 27 28 29 30 31 32 33 34 35 36 37 38
  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');
Clement Ho committed
39 40
    });

41
    it('should show todos-count', () => {
Clement Ho committed
42 43 44
      expect(isTodosCountHidden()).toEqual(false);
    });

45 46
    it('should show 99+ for todos-count', () => {
      expect($(todosPendingCount).text()).toEqual('99+');
Clement Ho committed
47 48
    });
  });
49
});