make top-content component and frame-content component
This commit is contained in:
parent
042aa94936
commit
4c9d0433a6
13 changed files with 102 additions and 76 deletions
18
test/content/components/common/follow.test.js
Normal file
18
test/content/components/common/follow.test.js
Normal file
|
@ -0,0 +1,18 @@
|
|||
import { expect } from "chai";
|
||||
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);
|
||||
expect(targets).to.have.lengthOf(3);
|
||||
|
||||
let ids = Array.prototype.map.call(targets, (e) => e.id);
|
||||
expect(ids).to.include.members(['visible_a', 'editable_div_1', 'editable_div_2']);
|
||||
});
|
||||
});
|
||||
});
|
Reference in a new issue