mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-17 21:20:23 +00:00
13 lines
365 B
JavaScript
13 lines
365 B
JavaScript
$(function () {
|
|
|
|
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 () {
|
|
ok($.support.transition ? $.support.transition.end : true, 'end string is defined')
|
|
})
|
|
|
|
})
|