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
798 B
26 lines
798 B
7 years ago
|
import { expect } from "chai";
|
||
7 years ago
|
import FollowComponent from '../../src/components/follow';
|
||
7 years ago
|
|
||
7 years ago
|
describe('FollowComponent', () => {
|
||
7 years ago
|
describe('#codeChars', () => {
|
||
|
it('returns a string for key codes', () => {
|
||
|
let chars = [
|
||
|
KeyboardEvent.DOM_VK_0, KeyboardEvent.DOM_VK_1,
|
||
|
KeyboardEvent.DOM_VK_A, KeyboardEvent.DOM_VK_B];
|
||
7 years ago
|
expect(FollowComponent.codeChars(chars)).to.equal('01ab');
|
||
|
expect(FollowComponent.codeChars([])).to.be.equal('');
|
||
7 years ago
|
});
|
||
|
});
|
||
7 years ago
|
|
||
|
describe('#getTargetElements', () => {
|
||
|
beforeEach(() => {
|
||
7 years ago
|
document.body.innerHTML = __html__['test/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
|
});
|