Skip to content

Commit

Permalink
0.3.0 release candidate (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert authored Aug 15, 2023
1 parent 54dd878 commit 462c090
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 52 deletions.
16 changes: 7 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Package: shinytest2
Title: Testing for Shiny Applications
Version: 0.2.1.9000
Version: 0.3.0
Authors@R:
c(
person("Barret", "Schloerke", role = c("cre", "aut"), email = "barret@rstudio.com", comment = c(ORCID = "0000-0001-9986-114X")),
person(family = "RStudio", role = c("cph", "fnd")),
person("Winston", "Chang", role ="ctb", email = "winston@rstudio.com", comment = "Original author to rstudio/shinytest"),
person("Gábor", "Csárdi", role = "ctb", email = "gabor@rstudio.com", comment = "Original author to rstudio/shinytest"),
person("Hadley", "Wickham", role = "ctb", email = "hadley@rstudio.com", comment = "Original author to rstudio/shinytest"),
person("Barret", "Schloerke", role = c("cre", "aut"), email = "barret@posit.co", comment = c(ORCID = "0000-0001-9986-114X")),
person(family = "Posit Software, PBC", role = c("cph", "fnd")),
person("Winston", "Chang", role ="ctb", email = "winston@posit.co", comment = "Original author to rstudio/shinytest"),
person("Gábor", "Csárdi", role = "ctb", email = "gabor@posit.co", comment = "Original author to rstudio/shinytest"),
person("Hadley", "Wickham", role = "ctb", email = "hadley@posit.co", comment = "Original author to rstudio/shinytest"),
person(family = "Mango Solutions", role = c("cph", "ccp"), comment = "Original author to rstudio/shinytest")
)
Description: Automated unit testing of Shiny applications through a headless 'Chromium' browser.
Expand All @@ -25,7 +25,7 @@ Imports:
R6 (>= 2.4.0),
callr,
checkmate (>= 2.0.0),
chromote (> 0.1.1),
chromote (>= 0.1.2),
crayon,
ellipsis,
fs,
Expand Down Expand Up @@ -58,8 +58,6 @@ Config/Needs/website:
pkgdown,
tidyverse/tidytemplate
Config/testthat/edition: 3
Remotes:
rstudio/chromote
Collate:
'R6-helper.R'
'app-driver-chromote.R'
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# shinytest2 (development version)
# shinytest2 0.3.0

## Breaking changes

Expand Down
39 changes: 0 additions & 39 deletions revdep/README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,2 @@
# Platform

|field |value |
|:--------|:----------------------------------------|
|version |R version 4.2.2 (2022-10-31) |
|os |macOS Ventura 13.2.1 |
|system |aarch64, darwin20 |
|ui |X11 |
|language |(EN) |
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |America/New_York |
|date |2023-02-21 |
|pandoc |3.1 @ /opt/homebrew/bin/ (via rmarkdown) |

# Dependencies

|package |old |new |Δ |
|:-----------|:-----|:--------|:--|
|shinytest2 |0.2.0 |0.2.1 |* |
|AsioHeaders |NA |1.22.1-2 |* |

# Revdeps

## All (12)

|package |version |error |warning |note |
|:---------------|:-------|:-----|:-------|:----|
|conductor |0.1.1 | | | |
|datefixR |1.4.1 | | | |
|designer |0.2.0 | | | |
|disaggR |1.0.5 | | | |
|gridstackeR |0.1.0 | | | |
|histoslider |0.1 | | | |
|howler |0.2.1 | | | |
|IDEAFilter |0.1.2 | | | |
|learnr |0.11.2 | | | |
|shiny.benchmark |0.1.1 | | | |
|shiny.reglog |0.5.2 | | | |
|video |0.1.1 | | | |

2 changes: 1 addition & 1 deletion revdep/cran.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## revdepcheck results

We checked 12 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
We checked 17 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages
Expand Down
4 changes: 2 additions & 2 deletions vignettes/in-depth.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,8 @@ update_dataset <- function(app, value, component_id = "dataset") {
app$set_inputs(!!!ml)
}
appDir <- system.file("examples/02_text", package = "shiny")
app <- shinytest2::AppDriver$new(appDir)
app_dir <- system.file("examples/02_text", package = "shiny")
app <- shinytest2::AppDriver$new(app_dir)
update_dataset(app, "rock")
```

Expand Down

0 comments on commit 462c090

Please sign in to comment.