tests/testthat/test-js-version.R

context("Validate Compiled shiny.js File")

test_that("{{ 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))
  })
})
tomkuipers1402/shiny documentation built on Feb. 13, 2020, 7:22 p.m.