We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd31938 commit dfbd183Copy full SHA for dfbd183
components/input/__tests__/index.test.js
@@ -4,10 +4,12 @@ import Input from '..';
4
import Form from '../../form';
5
import focusTest from '../../../tests/shared/focusTest';
6
7
-const { TextArea } = Input;
+const { TextArea, Password } = Input;
8
9
describe('Input', () => {
10
focusTest(Input);
11
+ focusTest(TextArea);
12
+ focusTest(Password);
13
14
it('should support maxLength', async () => {
15
const wrapper = mount(Input, { attrs: { maxLength: 3 }, sync: false });
0 commit comments