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)

4389
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -108,14 +108,14 @@
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-detect-browsers": "^2.3.2",
"karma-firefox-launcher": "^1.1.0",
"karma-qunit": "^1.2.1",
"karma-qunit": "^2.0.2",
"karma-sinon": "^1.0.5",
"node-sass": "^4.9.0",
"nodemon": "^1.17.4",
"npm-run-all": "^4.1.2",
"popper.js": "^1.14.3",
"postcss-cli": "^5.0.0",
"qunitjs": "^2.4.1",
"qunit": "^2.6.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "4.0.0-beta.4",
"rollup-plugin-node-resolve": "^3.3.0",