aboutsummaryrefslogtreecommitdiff
path: root/test/content/components/common/follow.test.ts
blob: 90d6cf5c97b51d265514a6a8096b79680d3bf4e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import FollowComponent from 'content/components/common/follow';

describe('FollowComponent', () => {
  describe('#getTargetElements', () => {
    beforeEach(() => {
      document.body.innerHTML = __html__['test/content/components/common/follow.html'];
    });

    it('returns visible links', () => {
      let targets = FollowComponent.getTargetElements(
        window,
        { width: window.innerWidth, height: window.innerHeight },
        { x: 0, y: 0 });
      expect(targets).to.have.lengthOf(4);

      let ids = Array.prototype.map.call(targets, (e) => e.id);
      expect(ids).to.include.members([
        'visible_a',
        'editable_div_1',
        'editable_div_2',
        'summary_1',
      ]);
    });
  });
});