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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
import { expect } from "chai";
|
|
|
|
import FollowComponent from 'content/components/follow';
|
|
|
|
|
|
|
|
describe('FollowComponent', () => {
|
|
|
|
describe('#getTargetElements', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
document.body.innerHTML = __html__['test/content/components/follow.html'];
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns visible links', () => {
|
|
|
|
let targets = FollowComponent.getTargetElements(window.document);
|
|
|
|
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']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|