follow as redux
This commit is contained in:
		
							parent
							
								
									6f857e2c81
								
							
						
					
					
						commit
						0a7ae631cd
					
				
					 8 changed files with 297 additions and 208 deletions
				
			
		| 
						 | 
				
			
			@ -1,24 +1,24 @@
 | 
			
		|||
import { expect } from "chai";
 | 
			
		||||
import Follow from '../../src/content/follow';
 | 
			
		||||
import FollowComponent from '../../src/components/follow';
 | 
			
		||||
 | 
			
		||||
describe('Follow class', () => {
 | 
			
		||||
describe('FollowComponent', () => {
 | 
			
		||||
  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];
 | 
			
		||||
      expect(Follow.codeChars(chars)).to.equal('01ab');
 | 
			
		||||
      expect(Follow.codeChars([])).to.be.equal('');
 | 
			
		||||
      expect(FollowComponent.codeChars(chars)).to.equal('01ab');
 | 
			
		||||
      expect(FollowComponent.codeChars([])).to.be.equal('');
 | 
			
		||||
    });
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  describe('#getTargetElements', () => {
 | 
			
		||||
    beforeEach(() => {
 | 
			
		||||
      document.body.innerHTML = __html__['test/content/follow.html'];
 | 
			
		||||
      document.body.innerHTML = __html__['test/components/follow.html'];
 | 
			
		||||
    });
 | 
			
		||||
 | 
			
		||||
    it('returns visible links', () => {
 | 
			
		||||
      let links = Follow.getTargetElements(window.document);
 | 
			
		||||
      let links = FollowComponent.getTargetElements(window.document);
 | 
			
		||||
      expect(links).to.have.lengthOf(1);
 | 
			
		||||
    });
 | 
			
		||||
  });
 | 
			
		||||
		Reference in a new issue