Skip to content
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
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bslib
Title: Custom 'Bootstrap' 'Sass' Themes for 'shiny' and 'rmarkdown'
Version: 0.2.5.9000
Version: 0.2.5.1
Authors@R: c(
person("Carson", "Sievert", role = c("aut", "cre"), email = "carson@rstudio.com", comment = c(ORCID = "0000-0002-4958-2844")),
person("Joe", "Cheng", role = "aut", email = "joe@rstudio.com"),
Expand All @@ -23,7 +23,6 @@ Imports:
htmltools (>= 0.5.1),
jsonlite,
sass (>= 0.4.0),
digest (>= 0.6.25),
jquerylib (>= 0.1.3),
rlang,
magrittr
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# bslib 0.2.5.9000

# bslib 0.2.5.1

Small patch release to fix failing test on Solaris.

# bslib 0.2.5

Expand Down
4 changes: 4 additions & 0 deletions tests/testthat/test-rmd-skeletons.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ render_skeleton <- function(x) {
}

test_that("Rmd skeletons can be render cleanly", {
skip_if_not(
rmarkdown::pandoc_available("1.12.3"),
"Pandoc 1.12.3 or higher is required"
)
expect_error(render_skeleton("bs3"), NA)
expect_error(render_skeleton("bs4"), NA)
withr::with_namespace(
Expand Down