From 4eaeea81fd909e6711f57049fc4372f4045fa5aa Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Thu, 31 May 2012 10:24:23 -0700 Subject: rebuild and fix test --- js/tests/unit/bootstrap-tooltip.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'js') diff --git a/js/tests/unit/bootstrap-tooltip.js b/js/tests/unit/bootstrap-tooltip.js index 63a42b0d4..7b0c10de0 100644 --- a/js/tests/unit/bootstrap-tooltip.js +++ b/js/tests/unit/bootstrap-tooltip.js @@ -116,16 +116,16 @@ $(function () { test("should show tooltip if leave event hasn't occured before delay expires", function () { var tooltip = $('') .appendTo('#qunit-fixture') - .tooltip({ delay: 200 }) + .tooltip({ delay: 150 }) stop() tooltip.trigger('mouseenter') setTimeout(function () { ok(!$(".tooltip").is('.fade.in'), 'tooltip is not faded in') - setTimeout(function () { - ok(!$(".tooltip").is('.fade.in'), 'tooltip has faded in') - start() - }, 200) }, 100) + setTimeout(function () { + ok($(".tooltip").is('.fade.in'), 'tooltip has faded in') + start() + }, 200) }) test("should detect if title string is html or text: foo", function () { -- cgit v1.2.3