😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 satır
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. })