From 19a8f5c47c6174ef2093b203b55efe438810a082 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Fri, 18 Jan 2019 23:34:59 -0500 Subject: [PATCH] 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. --- test/spec/ui/combobox.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/spec/ui/combobox.js b/test/spec/ui/combobox.js index f0ae5bfce..75b92de5d 100644 --- a/test/spec/ui/combobox.js +++ b/test/spec/ui/combobox.js @@ -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);