Nothing
      test_that("user is told what's happening", {
  temp <- local_test_package("R/test.r" = "message('Hello')")
  withr::local_dir(temp)
  po_extract()
  po_create(c("ja", "fr"))
  # verbose output for shell commands on Windows uses " in shQuote (vs ' on unix)
  expect_snapshot(
    po_update(verbose = TRUE, lazy = FALSE),
    transform = standardise_dots,
    variant = .Platform$OS.type
  )
})
test_that("user is told what's happening", {
  temp <- local_test_package("R/test.r" = "message('Hello')")
  withr::local_dir(temp)
  po_extract()
  po_create("fr")
  writeLines("message('Hi')", file.path(temp, "R/test.R"))
  po_extract()
  po_update()
  expect_false(file.exists(file.path(temp, "po/R-fr.po~")))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.