mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-08 22:48:21 -05:00
12 lines
355 B
R
12 lines
355 B
R
test_that("shiny.js version was replaced", {
|
|
jsFiles <- system.file(
|
|
file.path("www", "shared", c("shiny.js", "shiny.min.js")),
|
|
package = "shiny"
|
|
)
|
|
|
|
lapply(jsFiles, function(jsFile) {
|
|
jsFileContent <- paste(suppressWarnings(readLines(jsFile)), collapse = "\n")
|
|
expect_false(grepl("\\{\\{\\sVERSION\\s\\}\\}", jsFileContent))
|
|
})
|
|
})
|