8622-testToMaster #1411

Merged
alexm merged 746 commits from 8622-testToMaster into master 2025-02-18 07:54:25 +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', () => {