Files
PyRIGS/static/js/tests/unit/transition.js
tjp03u 33b454684d Set up static files correctly
Working authentication
2014-10-23 23:42:53 +01:00

14 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')
})
})