Nothing
test_that("sleep works", {
before <- Sys.time()
sleep() # default: 5 sec
after <- Sys.time()
expect_identical((after - before) > 5, TRUE)
before <- Sys.time()
sleep(3)
after <- Sys.time()
expect_identical((after - before) > 3, TRUE)
})
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.