Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-28 01:53:41 +0300
committerChris Rebert <code@rebertia.com>2014-10-28 01:53:43 +0300
commit22e1f94b52b741c62d3f7d9d7891b395e7bb2372 (patch)
tree7ceeeb70cf5ef5b15839d1216d0faab29733ca27 /js/tests/unit/tooltip.js
parentea8660520323cc0ea7395a5afb305fc189cbe52d (diff)
Increase timeouts in tooltip unit tests to avoid spurious Sauce failures
Fixes #14851
Diffstat (limited to 'js/tests/unit/tooltip.js')
-rw-r--r--js/tests/unit/tooltip.js62
1 files changed, 31 insertions, 31 deletions
diff --git a/js/tests/unit/tooltip.js b/js/tests/unit/tooltip.js
index 351dd61cb5..4fbd91dc37 100644
--- a/js/tests/unit/tooltip.js
+++ b/js/tests/unit/tooltip.js
@@ -803,16 +803,16 @@ $(function () {
var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
- .bootstrapTooltip({ delay: 15 })
+ .bootstrapTooltip({ delay: 150 })
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip is not faded in')
- }, 10)
+ ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip is not faded in')
+ }, 100)
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '20ms: tooltip is faded in')
+ ok($('.tooltip').is('.fade.in'), '200ms: tooltip is faded in')
start()
- }, 20)
+ }, 200)
$tooltip.trigger('mouseenter')
})
@@ -822,17 +822,17 @@ $(function () {
var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
- .bootstrapTooltip({ delay: 15 })
+ .bootstrapTooltip({ delay: 150 })
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip not faded in')
+ ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
$tooltip.trigger('mouseout')
- }, 10)
+ }, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '20ms: tooltip not faded in')
+ ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
start()
- }, 20)
+ }, 200)
$tooltip.trigger('mouseenter')
})
@@ -842,21 +842,21 @@ $(function () {
var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
- .bootstrapTooltip({ delay: { show: 0, hide: 15 }})
+ .bootstrapTooltip({ delay: { show: 0, hide: 150 }})
setTimeout(function () {
ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
$tooltip.trigger('mouseout')
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '10ms: tooltip still faded in')
+ ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
$tooltip.trigger('mouseenter')
- }, 10)
+ }, 100)
setTimeout(function () {
- ok($('.tooltip').is('.fade.in'), '20ms: tooltip still faded in')
+ ok($('.tooltip').is('.fade.in'), '200ms: tooltip still faded in')
start()
- }, 20)
+ }, 200)
}, 0)
$tooltip.trigger('mouseenter')
@@ -867,17 +867,17 @@ $(function () {
var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
- .bootstrapTooltip({ delay: 15 })
+ .bootstrapTooltip({ delay: 150 })
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip not faded in')
+ ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
$tooltip.trigger('mouseout')
- }, 10)
+ }, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '20ms: tooltip not faded in')
+ ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
start()
- }, 20)
+ }, 200)
$tooltip.trigger('mouseenter')
})
@@ -887,27 +887,27 @@ $(function () {
var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
- .bootstrapTooltip({ delay: { show: 15, hide: 0 }})
+ .bootstrapTooltip({ delay: { show: 150, hide: 0 }})
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '10ms: tooltip not faded in')
+ ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
$tooltip.trigger('mouseout')
- }, 10)
+ }, 100)
setTimeout(function () {
- ok(!$('.tooltip').is('.fade.in'), '25ms: tooltip not faded in')
+ ok(!$('.tooltip').is('.fade.in'), '250ms: tooltip not faded in')
start()
- }, 25)
+ }, 250)
$tooltip.trigger('mouseenter')
})
- test('should wait 20ms before hiding the tooltip', function () {
+ test('should wait 200ms before hiding the tooltip', function () {
stop()
var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
.appendTo('#qunit-fixture')
- .bootstrapTooltip({ delay: { show: 0, hide: 15 }})
+ .bootstrapTooltip({ delay: { show: 0, hide: 150 }})
setTimeout(function () {
ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '1ms: tooltip faded in')
@@ -915,13 +915,13 @@ $(function () {
$tooltip.trigger('mouseout')
setTimeout(function () {
- ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '10ms: tooltip still faded in')
- }, 10)
+ ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '100ms: tooltip still faded in')
+ }, 100)
setTimeout(function () {
- ok(!$tooltip.data('bs.tooltip').$tip.is('.in'), '20ms: tooltip removed')
+ ok(!$tooltip.data('bs.tooltip').$tip.is('.in'), '200ms: tooltip removed')
start()
- }, 20)
+ }, 200)
}, 0)