😎 Give your xaringan slides some style
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
514B

  1. context("test-style_xaringan")
  2. test_that("style_xaringan() writes to specified outfile", {
  3. tmpfile <- tempfile(fileext = ".css")
  4. expect_equal(style_xaringan(outfile = tmpfile), tmpfile)
  5. expect_true(file.exists(tmpfile))
  6. expect_true(grepl("xaringanthemer", readLines(tmpfile)[3]))
  7. })
  8. test_that("style_xaringan() warns if base_font_size is not absolute", {
  9. tmpfile <- tempfile(fileext = ".css")
  10. expect_warning(
  11. style_xaringan(outfile = tmpfile, base_font_size = "1em"),
  12. "absolute units"
  13. )
  14. })