diff --git a/tests/testthat/test-adtteSpec.R b/tests/testthat/test-adtteSpec.R index 553a3ab4..daca5253 100644 --- a/tests/testthat/test-adtteSpec.R +++ b/tests/testthat/test-adtteSpec.R @@ -196,7 +196,7 @@ test_that("adtteSpecServer module works as expected in the test app", { app_dir = test_path("adtteSpec"), name = "adtteSpecServe", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-assaySpec.R b/tests/testthat/test-assaySpec.R index 1c47bb6d..6ca03fce 100644 --- a/tests/testthat/test-assaySpec.R +++ b/tests/testthat/test-assaySpec.R @@ -28,7 +28,7 @@ test_that("assaySpecServer module works as expected in the test app", { app_dir = test_path("assaySpec"), name = "assaySpec", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) ns <- module_ns_shiny2(app) diff --git a/tests/testthat/test-barplot.R b/tests/testthat/test-barplot.R index 57b4053c..c90f52cd 100644 --- a/tests/testthat/test-barplot.R +++ b/tests/testthat/test-barplot.R @@ -29,7 +29,7 @@ test_that("barplot module works as expected in the test app", { app_dir = test_path("barplot"), name = "barplot", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-boxplot.R b/tests/testthat/test-boxplot.R index 16c8dcbb..f7a7f5d1 100644 --- a/tests/testthat/test-boxplot.R +++ b/tests/testthat/test-boxplot.R @@ -25,7 +25,7 @@ test_that("boxplot module works as expected in the test app", { app_dir = test_path("boxplot"), name = "boxplot", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-experimentSpec.R b/tests/testthat/test-experimentSpec.R index 4ebe0207..3f58fd66 100644 --- a/tests/testthat/test-experimentSpec.R +++ b/tests/testthat/test-experimentSpec.R @@ -99,7 +99,7 @@ test_that("experimentSpec module works as expected in the test app", { app_dir = test_path("experimentSpec"), name = "experimentSpec", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-forest.R b/tests/testthat/test-forest.R index 7dddf1be..abd0fff0 100644 --- a/tests/testthat/test-forest.R +++ b/tests/testthat/test-forest.R @@ -29,7 +29,7 @@ test_that("forest_tte module works as expected in the test app", { app_dir = test_path("forest_tte"), name = "forest_tte", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-geneSpec.R b/tests/testthat/test-geneSpec.R index 501e080a..f7334c70 100644 --- a/tests/testthat/test-geneSpec.R +++ b/tests/testthat/test-geneSpec.R @@ -42,7 +42,7 @@ test_that("geneSpec module works as expected in the test app", { app_dir = test_path("geneSpec"), name = "geneSpec", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-km.R b/tests/testthat/test-km.R index 5be5f72d..d9e34f75 100644 --- a/tests/testthat/test-km.R +++ b/tests/testthat/test-km.R @@ -30,7 +30,7 @@ test_that("km module works as expected in the test app", { app_dir = test_path("km"), name = "km", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-pca.R b/tests/testthat/test-pca.R index 2303e602..ad212313 100644 --- a/tests/testthat/test-pca.R +++ b/tests/testthat/test-pca.R @@ -24,7 +24,7 @@ test_that("pca module works as expected in the test app", { app_dir = test_path("pca"), name = "pca", variant = platform_variant(), - load_timeout = 30000, + load_timeout = 300000, seed = default_app_seed ) diff --git a/tests/testthat/test-quality.R b/tests/testthat/test-quality.R index d31381b0..74b2f79d 100644 --- a/tests/testthat/test-quality.R +++ b/tests/testthat/test-quality.R @@ -26,7 +26,7 @@ test_that("quality module works as expected in the test app", { app_dir = test_path("quality"), name = "quality", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-sampleVarSpec.R b/tests/testthat/test-sampleVarSpec.R index 00a3b20c..4746074f 100644 --- a/tests/testthat/test-sampleVarSpec.R +++ b/tests/testthat/test-sampleVarSpec.R @@ -176,7 +176,7 @@ test_that("sampleVarSpec module works as expected in the test app", { app_dir = test_path("sampleVarSpec"), name = "sampleVarSpec", variant = platform_variant(), - load_timeout = 30000 + load_timeout = 300000 ) app$wait_for_idle(timeout = 20000) diff --git a/tests/testthat/test-scatterplot.R b/tests/testthat/test-scatterplot.R index 42acf204..5bda9fa1 100644 --- a/tests/testthat/test-scatterplot.R +++ b/tests/testthat/test-scatterplot.R @@ -29,7 +29,7 @@ test_that("scatterplot module works as expected in the test app", { app_dir = test_path("scatterplot"), name = "scatterplot", variant = platform_variant(), - load_timeout = 30000, + load_timeout = 300000, seed = default_app_seed ) diff --git a/tests/testthat/test-volcanoplot.R b/tests/testthat/test-volcanoplot.R index d6a9f7cd..0e36ad75 100644 --- a/tests/testthat/test-volcanoplot.R +++ b/tests/testthat/test-volcanoplot.R @@ -24,7 +24,7 @@ test_that("volcanoplot module works as expected in the test app", { app_dir = test_path("volcanoplot"), name = "volcanoplot", variant = platform_variant(), - load_timeout = 30000, + load_timeout = 300000, seed = default_app_seed )