Skip to content

Commit

Permalink
Reset to 100ms delay
Browse files Browse the repository at this point in the history
  • Loading branch information
dvg-p4 committed Sep 24, 2024
1 parent 2796f4e commit 008f5e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-reactivity.r
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,7 @@ test_that("debounce/throttle work properly (with priming)", {

# This observer will be what changes rv$a.
src <- observe({
invalidateLater(105)
invalidateLater(100)
rv$a <- isolate(rv$a) + 1
})
on.exit(src$destroy(), add = TRUE)
Expand Down Expand Up @@ -1322,7 +1322,7 @@ test_that("debounce/throttle work properly (without priming)", {

# This observer will be what changes rv$a.
src <- observe({
invalidateLater(105)
invalidateLater(100)
rv$a <- isolate(rv$a) + 1
})
on.exit(src$destroy(), add = TRUE)
Expand Down

0 comments on commit 008f5e9

Please sign in to comment.