aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit
diff options
context:
space:
mode:
authorLaussel Loïc <[email protected]>2018-08-31 09:18:28 +0200
committerXhmikosR <[email protected]>2018-11-13 08:47:32 +0200
commit4cac833447c53ec7f140c26260ddf36d78ff298f (patch)
tree7c7b0631c775c79a39949c10d7d9d0bea5761219 /js/tests/unit
parent2f81ab007cad06dd333a7431a3a653f812bbf246 (diff)
downloadbootstrap-4cac833447c53ec7f140c26260ddf36d78ff298f.tar.xz
bootstrap-4cac833447c53ec7f140c26260ddf36d78ff298f.zip
Implement `data-dismiss="toast"` to allow user to interact itself with the component (#27155)
Diffstat (limited to 'js/tests/unit')
-rw-r--r--js/tests/unit/toast.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/js/tests/unit/toast.js b/js/tests/unit/toast.js
index 873661c76..d9c5e1fb6 100644
--- a/js/tests/unit/toast.js
+++ b/js/tests/unit/toast.js
@@ -232,4 +232,33 @@ $(function () {
})
.bootstrapToast('show')
})
+
+
+ QUnit.test('should close toast when close element with data-dismiss attribute is set', function (assert) {
+ assert.expect(2)
+ var done = assert.async()
+
+ var toastHtml =
+ '<div class="toast" data-delay="1" data-autohide="false" data-animation="false">' +
+ '<button type="button" class="ml-2 mb-1 close" data-dismiss="toast">' +
+ 'close' +
+ '</button>' +
+ '</div>'
+
+ var $toast = $(toastHtml)
+ .bootstrapToast()
+ .appendTo($('#qunit-fixture'))
+
+ $toast
+ .on('shown.bs.toast', function () {
+ assert.strictEqual($toast.hasClass('show'), true)
+ var button = $toast.find('.close')
+ button.trigger('click')
+ })
+ .on('hidden.bs.toast', function () {
+ assert.strictEqual($toast.hasClass('show'), false)
+ done()
+ })
+ .bootstrapToast('show')
+ })
})