Files
CRM/libraries/bootstrap/js/tests/unit/bootstrap-transition.js
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

13 lines
373 B
JavaScript

$(function () {
module("bootstrap-transition")
test("should be defined on jquery support object", function () {
ok($.support.transition != undefined, 'transition object is defined')
})
test("should provide an end object", function () {
ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
})
})