diff --git a/tests/qunit/qunit.css b/tests/qunit/qunit.css index d445a567b7..5d8b39647e 100644 --- a/tests/qunit/qunit.css +++ b/tests/qunit/qunit.css @@ -236,6 +236,9 @@ color: #0D3349; background-color: #F5F5F5; z-index: 99; + + max-height: 80vh; + overflow: auto; } #qunit-modulefilter-actions { diff --git a/tests/qunit/qunit.js b/tests/qunit/qunit.js index 5e48b79303..a01121e1e4 100644 --- a/tests/qunit/qunit.js +++ b/tests/qunit/qunit.js @@ -5509,7 +5509,7 @@ // module names, indicating how the interface works. This also makes // for a quicker interaction in the common case of small projects. // Don't mandate typing just to get the menu. - results = dropdownData.options.slice(0, 20).map(function (obj) { + results = dropdownData.options.map(function (obj) { // Fake empty results. https://github.com/farzher/fuzzysort/issues/41 return { obj: obj @@ -5517,7 +5517,7 @@ }); } else { results = fuzzysort.go(searchText, dropdownData.options, { - limit: 20, + limit: 1000, key: 'name', allowTypo: true });