From a3e45d8ced63369ad6bd29ce45d919b77412a99b Mon Sep 17 00:00:00 2001 From: Johann-S Date: Fri, 31 Aug 2018 21:00:29 +0200 Subject: add information about valid selectors (#27137) --- js/tests/unit/util.js | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'js/tests/unit') diff --git a/js/tests/unit/util.js b/js/tests/unit/util.js index 4f44c2907..37327b868 100644 --- a/js/tests/unit/util.js +++ b/js/tests/unit/util.js @@ -20,31 +20,6 @@ $(function () { assert.strictEqual(Util.getSelectorFromElement($el2[0]), null) }) - QUnit.test('Util.getSelectorFromElement should use getElementById', function (assert) { - assert.expect(2) - - var spy = sinon.spy(document, 'getElementById') - - var $el = $('
').appendTo($('#qunit-fixture')) - $('
').appendTo($('#qunit-fixture')) - - assert.strictEqual(Util.getSelectorFromElement($el[0]), '#7') - assert.ok(spy.called) - }) - - QUnit.test('Util.getSelectorFromElement should use querySelector when there are multi ids', function (assert) { - assert.expect(2) - - var spy = sinon.spy(document, 'querySelector') - - var $el = $('
').appendTo($('#qunit-fixture')) - $('
').appendTo($('#qunit-fixture')) - $('
').appendTo($('#qunit-fixture')) - - assert.strictEqual(Util.getSelectorFromElement($el[0]), '#j7, #j8') - assert.ok(spy.called) - }) - QUnit.test('Util.typeCheckConfig should thrown an error when a bad config is passed', function (assert) { assert.expect(1) var namePlugin = 'collapse' -- cgit v1.2.3