Skip to content

Commit 0d992b7

Browse files
authored
Increase timeout in some tests in Integration tests (#946)
Part of - insightsengineering/coredev-tasks#686
1 parent 1b7ba7a commit 0d992b7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

R/tm_outliers.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,7 @@ srv_outliers <- function(id, data, outlier_var,
11161116
categorical_var <- as.vector(merged$anl_input_r()$columns_source$categorical_var)
11171117
if (!is.null(categorical_var)) q[["summary_data"]]
11181118
},
1119-
option = list(
1119+
options = list(
11201120
dom = "t",
11211121
autoWidth = TRUE,
11221122
columnDefs = list(list(width = "200px", targets = "_all"))

tests/testthat/test-shinytest2-tm_misssing_data.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ app_driver_tm_missing_data <- function() {
3232
post_output = NULL
3333
)
3434
),
35-
timeout = 3000,
35+
timeout = 10000,
3636
seed = 1
3737
)
3838
}

tests/testthat/test-shinytest2-tm_variable_browser.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ app_driver_tm_variable_browser <- function() {
2424
pre_output = shiny::tags$div("A pre-output message for tm_variable_browser"),
2525
post_output = shiny::tags$div("A post-output message for tm_variable_browser")
2626
)
27-
)
27+
),
28+
timeout = 10000
2829
)
2930
}
3031

0 commit comments

Comments
 (0)