aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/unit/tabs/tabs_core.js2
-rw-r--r--tests/unit/tabs/tabs_defaults.js2
-rw-r--r--tests/unit/tabs/tabs_options.js6
3 files changed, 6 insertions, 4 deletions
diff --git a/tests/unit/tabs/tabs_core.js b/tests/unit/tabs/tabs_core.js
index 6d3efc5fd..ba5f3d014 100644
--- a/tests/unit/tabs/tabs_core.js
+++ b/tests/unit/tabs/tabs_core.js
@@ -1,6 +1,8 @@
/*
* tabs_core.js
*/
+var el;
+
(function($) {
module("tabs: core");
diff --git a/tests/unit/tabs/tabs_defaults.js b/tests/unit/tabs/tabs_defaults.js
index 7c9ae8be5..306e8c86e 100644
--- a/tests/unit/tabs/tabs_defaults.js
+++ b/tests/unit/tabs/tabs_defaults.js
@@ -5,8 +5,8 @@
var tabs_defaults = {
ajaxOptions: null,
cache: false,
- cookie: null,
collapsible: false,
+ cookie: null,
disabled: [],
event: 'click',
fx: null,
diff --git a/tests/unit/tabs/tabs_options.js b/tests/unit/tabs/tabs_options.js
index 86f7941b4..51193b8cc 100644
--- a/tests/unit/tabs/tabs_options.js
+++ b/tests/unit/tabs/tabs_options.js
@@ -83,7 +83,7 @@ test('disabled', function() {
ok(false, "missing test - untested code is broken code.");
});
-test('events', function() {
+test('event', function() {
ok(false, "missing test - untested code is broken code.");
});
@@ -99,7 +99,7 @@ test('panelTemplate', function() {
ok(false, "missing test - untested code is broken code.");
});
-test('selected: null', function() {
+test('selected: null', function() { // TODO move to selected
expect(2);
el = $('#tabs1');
@@ -110,7 +110,7 @@ test('selected: null', function() {
});
-test('selected property', function() {
+test('selected', function() {
expect(5);
$('#tabs1').tabs();