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 2e75bae commit 66ee024Copy full SHA for 66ee024
dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/form/ui-select.test.js
@@ -246,6 +246,12 @@ define([
246
247
expect(type).toEqual('object');
248
});
249
+ it('Must be false if "disabled" is true', function () {
250
+ obj.listVisible(false);
251
+ obj.disabled(true);
252
+ obj.toggleListVisible();
253
+ expect(obj.listVisible()).toEqual(false);
254
+ });
255
it('Must be false if "listVisible" is true', function () {
256
obj.listVisible(true);
257
obj.toggleListVisible();
0 commit comments