test: refs #7075 add unit tests for VnInput component #1209

Merged
jtubau merged 8 commits from 7075-createTestToVnInput into dev 2025-01-22 08:23:40 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit d0e2093a1c - Show all commits

View File

@ -16,6 +16,7 @@ describe('VnInput', () => {
maxlength: 101
},
attrs: {
label: 'test',
required: true,
maxlength: 101,
maxLength: 10,
@ -24,7 +25,7 @@ describe('VnInput', () => {
});
wrapper = wrapper.wrapper;
vm = wrapper.vm;
input = wrapper.find('input');
input = wrapper.find('[data-cy="test_input"]');
};
describe('value', () => {