Remove test that only works if we can reliably simulate clicks

Previously the combo showed immediately on mousedown, now it
shows on mouseup after some slight delay.
This commit is contained in:
Bryan Housel
2019-01-18 23:34:59 -05:00
parent 1ec5b708fc
commit 19a8f5c47c
-7
View File
@@ -113,13 +113,6 @@ describe('uiCombobox', function() {
expect(body.selectAll('.combobox-option').text()).to.equal('foobar');
});
it('is initially shown with no selection', function() {
input.call(combobox.data(data));
focusTypeahead(input);
simulateKeypress('↓');
expect(body.selectAll('.combobox-option.selected').size()).to.equal(0);
});
it('selects the first option that matches the input', function() {
input.call(combobox.data(data));
focusTypeahead(input);