aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/transition.js
blob: 79722f80823eb16841bc579ca0a43938600938d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$(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')
      })

})