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.
16 lines
448 B
16 lines
448 B
7 years ago
|
import { expect } from "chai";
|
||
7 years ago
|
import FollowComponent from 'content/components/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/follow.html'];
|
||
7 years ago
|
});
|
||
|
|
||
|
it('returns visible links', () => {
|
||
7 years ago
|
let links = FollowComponent.getTargetElements(window.document);
|
||
7 years ago
|
expect(links).to.have.lengthOf(1);
|
||
|
});
|
||
|
});
|
||
7 years ago
|
});
|