mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
13 lines
343 B
JavaScript
13 lines
343 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.end, 'end string is defined')
|
||
|
})
|
||
|
|
||
|
})
|