aboutsummaryrefslogtreecommitdiff
path: root/test/content/components/common/follow.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-04-30 14:00:07 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-05-02 11:14:19 +0900
commitc60d0e7392fc708e961614d6b756a045de74f458 (patch)
tree0b9a5fce1879e38a92d5dbb2915779aee0ad22d6 /test/content/components/common/follow.test.ts
parent257162e5b6b4993e1dff0d705ffa6f0d809033eb (diff)
Rename .js/.jsx to .ts/.tsx
Diffstat (limited to 'test/content/components/common/follow.test.ts')
-rw-r--r--test/content/components/common/follow.test.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/content/components/common/follow.test.ts b/test/content/components/common/follow.test.ts
new file mode 100644
index 0000000..90d6cf5
--- /dev/null
+++ b/test/content/components/common/follow.test.ts
@@ -0,0 +1,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',
+ ]);
+ });
+ });
+});