Update Utilities.test.js

This commit is contained in:
Francisco Hodge
2019-10-29 10:57:45 -04:00
committed by GitHub
parent 86caf021fa
commit 6cf99720c4
+2 -2
View File
@@ -379,7 +379,7 @@ it('Keyboard handleMaxLength will work with numeric maxLength', () => {
let output = keyboard.utilities.handleMaxLength(keyboard.input, "testq");
expect(output).toBeFalsy();
expect(output).toBe(true);
});
it('Keyboard handleMaxLength wont work with non numeric or object maxLength', () => {
@@ -490,4 +490,4 @@ it('Keyboard camelCase will work with empty strings', () => {
testUtil.setDOM();
let keyboard = new Keyboard();
expect(keyboard.utilities.camelCase()).toBeFalsy();
});
});