Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2018-12-28 17:39:16 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-12-28 18:34:22 +0300
commit0d5abb5e76565cc1ce1cbcd74482c59869a51d06 (patch)
tree72409b6be4f7dbe14a0fe418d1a70301cd9b71ae /test
parentfdf15ea9792343a528a7881546cd83e7b0f13e0b (diff)
Update QUnit to v1.23.1.
Diffstat (limited to 'test')
-rw-r--r--test/fixtures/generic-qunit.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/fixtures/generic-qunit.js b/test/fixtures/generic-qunit.js
index 6048a8d..2acb44f 100644
--- a/test/fixtures/generic-qunit.js
+++ b/test/fixtures/generic-qunit.js
@@ -14,11 +14,11 @@
}
QUnit.test(window.location.pathname, function (assert) {
- // Remove checkboxes QUnit dynamically adds to the DOM as part of its UI
- // because these checkboxes may not comply with some Bootlint checks.
- $('#qunit-filter-pass, #qunit-urlconfig-noglobals, #qunit-urlconfig-notrycatch').remove();
+ // Remove checkboxes QUnit dynamically adds to the DOM as part of its UI,
+ // because these checkboxes do not comply with some Bootlint checks.
+ $('.qunit-filter').remove();
- expect(1);
+ assert.expect(1);
var lints = Array.prototype.slice.call(document.querySelectorAll('#bootlint>li'));
var expectedLintMsgs = lints.map(function (item) {
return item.dataset.lint;