A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
733 B
26 lines
733 B
7 years ago
|
import FollowComponent from 'content/components/common/follow';
|
||
7 years ago
|
|
||
7 years ago
|
describe('FollowComponent', () => {
|
||
7 years ago
|
describe('#getTargetElements', () => {
|
||
|
beforeEach(() => {
|
||
7 years ago
|
document.body.innerHTML = __html__['test/content/components/common/follow.html'];
|
||
7 years ago
|
});
|
||
|
|
||
|
it('returns visible links', () => {
|
||
7 years ago
|
let targets = FollowComponent.getTargetElements(
|
||
|
window,
|
||
|
{ width: window.innerWidth, height: window.innerHeight },
|
||
|
{ x: 0, y: 0 });
|
||
6 years ago
|
expect(targets).to.have.lengthOf(4);
|
||
7 years ago
|
|
||
|
let ids = Array.prototype.map.call(targets, (e) => e.id);
|
||
6 years ago
|
expect(ids).to.include.members([
|
||
|
'visible_a',
|
||
|
'editable_div_1',
|
||
|
'editable_div_2',
|
||
|
'summary_1',
|
||
|
]);
|
||
7 years ago
|
});
|
||
|
});
|
||
7 years ago
|
});
|