Skip to content

Commit 58eab40

Browse files
authored
increase timeouts (#950)
1 parent ac4deef commit 58eab40

13 files changed

+21
-13
lines changed

tests/testthat/test-shinytest2-tm_a_pca.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ app_driver_tm_a_pca <- function() {
2929
pre_output = shiny::tags$div(id = "unique_id_pre", "A pre output"),
3030
post_output = shiny::tags$div(id = "unique_id_post", "A post output")
3131
)
32-
)
32+
),
33+
timeout = 10000
3334
)
3435
}
3536

tests/testthat/test-shinytest2-tm_a_regression.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ app_driver_tm_a_regression <- function() {
4343
labs = list(subtitle = "Plot generated by Regression Module")
4444
)
4545
)
46-
)
46+
),
47+
timeout = 10000
4748
)
4849
}
4950

tests/testthat/test-shinytest2-tm_data_table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ app_driver_tm_data_table <- function() {
1818
post_output = NULL
1919
)
2020
),
21-
timeout = 3000
21+
timeout = 10000
2222
)
2323
}
2424

tests/testthat/test-shinytest2-tm_file_viewer.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ app_driver_tm_file_viewer <- function() {
1414
)
1515
)
1616
),
17-
timeout = 3000
17+
timeout = 10000
1818
)
1919
}
2020

tests/testthat/test-shinytest2-tm_front_page.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ app_driver_tm_front_page <- function() {
1919
footnotes = "This is a footnote"
2020
)
2121
),
22-
timeout = 3000
22+
timeout = 10000
2323
)
2424
}
2525

tests/testthat/test-shinytest2-tm_g_association.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ app_driver_tm_g_association <- function() {
4242
labs = list(subtitle = "Plot generated by Association Module")
4343
)
4444
)
45-
)
45+
),
46+
timeout = 10000
4647
)
4748
}
4849

tests/testthat/test-shinytest2-tm_g_bivariate.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ app_driver_tm_g_bivariate <- function() {
8282
ggtheme = "classic",
8383
swap_axes = TRUE
8484
)
85-
)
85+
),
86+
timeout = 10000
8687
)
8788
}
8889

tests/testthat/test-shinytest2-tm_g_distribution.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ app_driver_tm_g_distribution <- function() {
4242
freq = TRUE,
4343
bins = 36,
4444
)
45-
)
45+
),
46+
timeout = 10000
4647
)
4748
}
4849

tests/testthat/test-shinytest2-tm_g_response.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ app_driver_tm_g_response <- function() {
3737
)
3838
)
3939
)
40-
)
40+
),
41+
timeout = 10000
4142
)
4243
}
4344

tests/testthat/test-shinytest2-tm_g_scatterplot.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ app_driver_tm_g_scatterplot <- function() {
8181
ggtheme = "classic",
8282
max_deg = 6
8383
)
84-
)
84+
),
85+
timeout = 10000
8586
)
8687
}
8788

0 commit comments

Comments
 (0)