mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
22 lines
233 B
JavaScript
22 lines
233 B
JavaScript
/*
|
|
* tabs unit tests
|
|
*/
|
|
(function($) {
|
|
//
|
|
// Tabs Test Helper Functions
|
|
//
|
|
|
|
|
|
// Tabs Tests
|
|
module("tabs");
|
|
|
|
test("init", function() {
|
|
expect(1);
|
|
|
|
el = $("#tabs1").tabs();
|
|
ok(true, '.tabs() called on element');
|
|
});
|
|
|
|
|
|
})(jQuery);
|