0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/js/tests/unit/bootstrap-transition.js

13 lines
374 B
JavaScript
Raw Normal View History

$(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 () {
2012-01-28 10:35:13 +01:00
ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
})
})