From 6645ffd4bddcc178c8c1c8588c6b2a93290a4cca Mon Sep 17 00:00:00 2001 From: Kevin Brown Date: Sat, 27 Jul 2019 21:37:43 -0400 Subject: [PATCH] Select2 now clears the internal ID when it is destroyed (#5587) This fixes a bug where if you cloned a Select2, the internal ID used for mapping elements (specifically the `'); + + 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 = $(''); + + 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 = $(''); + + Utils.RemoveData($element[0]); +}); \ No newline at end of file