Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increase load time out x 10 #359

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/testthat/test-adtteSpec.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-assaySpec.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-barplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-boxplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-experimentSpec.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-forest.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-geneSpec.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-km.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-pca.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-quality.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-sampleVarSpec.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-scatterplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-volcanoplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand Down
Loading