We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c2ab0 commit 1d9a673Copy full SHA for 1d9a673
test/select.spec.js
@@ -1307,13 +1307,13 @@ describe('ui-select tests', function() {
1307
it('should show search input when true', function() {
1308
setupSelectComponent('true', 'bootstrap');
1309
clickMatch(el);
1310
- expect($(el).find('.ui-select-search')).not.toHaveClass('ng-hide');
+ expect($(el).find('.ui-select-search')).not.toHaveClass('ui-select-offscreen');
1311
});
1312
1313
it('should hide search input when false', function() {
1314
setupSelectComponent('false', 'bootstrap');
1315
1316
- expect($(el).find('.ui-select-search')).toHaveClass('ng-hide');
+ expect($(el).find('.ui-select-search')).toHaveClass('ui-select-offscreen');
1317
1318
1319
0 commit comments