2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-05-17 02:29:37 +03:00

feat: add dropdownShouldOpen prop (#1464)

This commit is contained in:
Jeff Sagal
2021-07-22 13:51:43 -07:00
committed by GitHub
parent 94549ff903
commit 1676947319
3 changed files with 40 additions and 1 deletions
+10
View File
@@ -188,4 +188,14 @@ describe("Toggling Dropdown", () => {
expect(Select.classes('vs--searching')).toBeFalsy();
});
it("can be opened with dropdownShouldOpen", () => {
const Select = selectWithProps({
noDrop: true,
dropdownShouldOpen: () => true,
options: ['one']
});
expect(Select.classes('vs--open')).toBeTruthy();
expect(Select.find('.vs__dropdown-menu li')).toBeTruthy();
})
});