Update API doc

This commit is contained in:
GitHub Actions Bot 2023-12-01 09:04:05 +00:00
parent 31cb589c6e
commit 1443de90e7
2 changed files with 42 additions and 5 deletions

View file

@ -44,8 +44,8 @@ describe('Tree.vue', () => {
it('emits update:filterValue on filter input', async () => {
wrapper = mount(Tree, {
props: {
filter: true,
},
filter: true
}
});
let searchField = wrapper.find('input.p-tree-filter');
@ -53,5 +53,5 @@ describe('Tree.vue', () => {
await searchField.trigger('keydown.space');
expect(wrapper.emitted('filter')).toBeTruthy();
})
});
});