tests/testthat/test-save.R

context("save")

source("utils.R")

test_that("d3 visualizations can be saved as html", {
  if (!rmarkdown::pandoc_available())
    skip("selfcontained htmlwidgets require pandoc")
  
  d3 <- r2d3(data=c(0.3, 0.6, 0.8, 0.95, 0.40, 0.20), script = "barchart.js")
  tmp <- tempfile(fileext = ".html")
  save_d3_html(d3, tmp)
  expect_true(file.exists(tmp))
})

test_that("d3 visualizations can be saved as png", {
  skip_on_cran()
  
  d3 <- r2d3(data=c(0.3, 0.6, 0.8, 0.95, 0.40, 0.20), script = "barchart.js")
  tmp <- tempfile(fileext = ".png")
  save_d3_png(d3, tmp)
  expect_true(file.exists(tmp))
})
rstudio/r2d3 documentation built on Nov. 21, 2021, 5:32 a.m.