use key instead of keyCode in follow
This commit is contained in:
		
							parent
							
								
									ea455059bd
								
							
						
					
					
						commit
						944683a2d8
					
				
					 4 changed files with 26 additions and 72 deletions
				
			
		| 
						 | 
				
			
			@ -2,16 +2,6 @@ import { expect } from "chai";
 | 
			
		|||
import FollowComponent from 'components/follow';
 | 
			
		||||
 | 
			
		||||
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(FollowComponent.codeChars(chars)).to.equal('01ab');
 | 
			
		||||
      expect(FollowComponent.codeChars([])).to.be.equal('');
 | 
			
		||||
    });
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
  describe('#getTargetElements', () => {
 | 
			
		||||
    beforeEach(() => {
 | 
			
		||||
      document.body.innerHTML = __html__['test/components/follow.html'];
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue