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

14 lines
365 B
JavaScript
Raw Normal View History

$(function () {
2013-05-16 20:06:30 +02:00
module("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')
})
})