1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-18 02:09:43 +00:00
TiddlyWiki5/cssbuild/twitter-bootstrap/js/tests/unit/bootstrap-transition.js
Jeremy Ruston f30a7cc61d Added Twitter Bootstrap source
We're going to build a custom version
2012-06-24 13:14:40 +01:00

13 lines
374 B
JavaScript
Executable File

$(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 ? $.support.transition.end : true, 'end string is defined')
})
})