Nothing
test_that("mutate works with nodes", {
mut <- create_notable('bull') %>%
mutate(letters = letters[1:5]) %>%
pull(letters)
expect_equal(mut, letters[1:5])
})
test_that("mutate works with edges", {
mut <- create_notable('bull') %>%
activate(edges) %>%
mutate(letters = letters[1:5]) %>%
pull(letters)
expect_equal(mut, letters[1:5])
})
test_empty_context()
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.