😎 Give your xaringan slides some style
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 lines
604B

  1. test_that("deprecation warnings", {
  2. expect_warning(write_xaringan_theme(outfile = NULL))
  3. expect_warning(write_extra_css(list(.test = list(prop = 'value')), outfile = NULL))
  4. expect_warning(mono_light(outfile = NULL))
  5. expect_warning(mono_dark(outfile = NULL))
  6. expect_warning(mono_accent(outfile = NULL))
  7. expect_warning(mono_accent_inverse(outfile = NULL))
  8. expect_warning(duo(outfile = NULL))
  9. expect_warning(duo_accent(outfile = NULL))
  10. expect_warning(duo_accent_inverse(outfile = NULL))
  11. expect_warning(solarized_light(outfile = NULL))
  12. expect_warning(solarized_dark(outfile = NULL))
  13. })