This commit is contained in:
Ross
2021-10-20 22:45:53 +01:00
parent cf2ffd86af
commit a9c4f54cd4
514 changed files with 115006 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
module('Utils - RemoveData');
var $ = require('jquery');
var Utils = require('select2/utils');
test('The data-select2-id attribute is removed', function (assert) {
var $element = $('<select data-select2-id="test"></select>');
Utils.RemoveData($element[0]);
assert.notEqual(
$element.attr('data-select2-id'),
'test',
'The internal attribute was not removed when the data was cleared'
);
});
test('The internal cache for the element is cleared', function (assert) {
var $element = $('<select data-select2-id="test"></select>');
Utils.__cache.test = {
'foo': 'bar'
};
Utils.RemoveData($element[0]);
assert.equal(Utils.__cache.test, null, 'The cache should now be empty');
});
test('Calling it on an element without data works', function (assert) {
assert.expect(0);
var $element = $('<select></select>');
Utils.RemoveData($element[0]);
});