diff --git a/.github/workflows/scheduled.yaml b/.github/workflows/scheduled.yaml index 73e3ce868..86b8582d9 100644 --- a/.github/workflows/scheduled.yaml +++ b/.github/workflows/scheduled.yaml @@ -34,6 +34,7 @@ jobs: uses: insightsengineering/r.pkg.template/.github/workflows/rhub.yaml@main with: lookup-refs: | + insightsengineering/teal insightsengineering/teal.transform insightsengineering/teal.code insightsengineering/teal.data diff --git a/DESCRIPTION b/DESCRIPTION index 35bcb17ff..f9a0819ae 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Type: Package Package: teal.modules.general Title: General Modules for 'teal' Applications -Version: 0.3.0.9043 -Date: 2024-09-10 +Version: 0.3.0.9045 +Date: 2024-09-11 Authors@R: c( person("Dawid", "Kaledkowski", , "dawid.kaledkowski@roche.com", role = c("aut", "cre")), person("Pawel", "Rucki", , "pawel.rucki@roche.com", role = "aut"), diff --git a/NEWS.md b/NEWS.md index d2edfb2f9..3cf1ded85 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# teal.modules.general 0.3.0.9043 +# teal.modules.general 0.3.0.9045 * Removed `Show Warnings` modals from modules. diff --git a/tests/testthat/test-shinytest2-tm_variable_browser.R b/tests/testthat/test-shinytest2-tm_variable_browser.R index 854f1352d..abf5680f8 100644 --- a/tests/testthat/test-shinytest2-tm_variable_browser.R +++ b/tests/testthat/test-shinytest2-tm_variable_browser.R @@ -10,18 +10,18 @@ app_driver_tm_variable_browser <- function() { CO2 <- CO2 # nolint: object_name. } ) - teal.data::datanames(data) <- c("iris", "mtcars", "women", "faithful", "CO2") init_teal_app_driver( data = data, modules = tm_variable_browser( label = "Variable browser (e2e)", + datasets_selected = c("iris", "mtcars", "women", "faithful", "CO2"), parent_dataname = "CO2", ggplot2_args = teal.widgets::ggplot2_args( labs = list(subtitle = "Plot generated by Variable Browser Module") ), pre_output = shiny::tags$div("A pre-output message for tm_variable_browser"), - post_output = shiny::tags$div("A post-output message for tm_variable_browser"), + post_output = shiny::tags$div("A post-output message for tm_variable_browser") ) ) }