icon("cogs")) in
scout_action():# old
scout_action(
  id = 3,
  icon = "house",
  label = "3",
  description = "3"
)
# now
scout_action(
  id = 3,
  icon = icon("house"),
  label = "3",
  description = "3"
)This allows to leverage other icon sets that fontawesome.
{testthat}
(mistakenly using expect() instead of
expect_length()).