1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-19 03:41:19 +02:00

chore(deps): update qunit and karma-qunit

This commit is contained in:
Johann-S
2018-05-07 15:56:24 +02:00
committed by XhmikosR
parent 0873ab71c7
commit 0338b61eb6
15 changed files with 2178 additions and 2240 deletions

View File

@@ -22,8 +22,8 @@
<script src="../../assets/js/vendor/popper.min.js"></script>
<!-- QUnit -->
<link rel="stylesheet" href="../../node_modules/qunitjs/qunit/qunit.css" media="screen">
<script src="../../node_modules/qunitjs/qunit/qunit.js"></script>
<link rel="stylesheet" href="../../node_modules/qunit/qunit/qunit.css" media="screen">
<script src="../../node_modules/qunit/qunit/qunit.js"></script>
<!-- Sinon -->
<script src="../../node_modules/sinon/pkg/sinon-no-sourcemaps.js"></script>

View File

@@ -66,6 +66,11 @@ module.exports = (config) => {
lines: 90
}
}
},
client: {
qunit: {
showUI: true
}
}
})
}

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.alert = $.fn.bootstrapAlert
delete $.fn.bootstrapAlert
$('#qunit-fixture').html('')
}
})

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.button = $.fn.bootstrapButton
delete $.fn.bootstrapButton
$('#qunit-fixture').html('')
}
})

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.carousel = $.fn.bootstrapCarousel
delete $.fn.bootstrapCarousel
$('#qunit-fixture').html('')
}
})

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.collapse = $.fn.bootstrapCollapse
delete $.fn.bootstrapCollapse
$('#qunit-fixture').html('')
}
})

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.dropdown = $.fn.bootstrapDropdown
delete $.fn.bootstrapDropdown
$('#qunit-fixture').html('')
}
})

View File

@@ -33,6 +33,7 @@ $(function () {
$(document.body).removeClass('modal-open')
$.fn.modal = $.fn.bootstrapModal
delete $.fn.bootstrapModal
$('#qunit-fixture').html('')
}
})

View File

@@ -17,6 +17,7 @@ $(function () {
$.fn.popover = $.fn.bootstrapPopover
delete $.fn.bootstrapPopover
$('.popover').remove()
$('#qunit-fixture').html('')
}
})

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.scrollspy = $.fn.bootstrapScrollspy
delete $.fn.bootstrapScrollspy
$('#qunit-fixture').html('')
}
})

View File

@@ -16,6 +16,7 @@ $(function () {
afterEach: function () {
$.fn.tab = $.fn.bootstrapTab
delete $.fn.bootstrapTab
$('#qunit-fixture').html('')
}
})

View File

@@ -17,6 +17,7 @@ $(function () {
$.fn.tooltip = $.fn.bootstrapTooltip
delete $.fn.bootstrapTooltip
$('.tooltip').remove()
$('#qunit-fixture').html('')
}
})

View File

@@ -3,7 +3,11 @@ $(function () {
window.Util = typeof bootstrap !== 'undefined' ? bootstrap.Util : Util
QUnit.module('util')
QUnit.module('util', {
afterEach: function () {
$('#qunit-fixture').html('')
}
})
QUnit.test('Util.getSelectorFromElement should return the correct element', function (assert) {
assert.expect(2)