I have a package with a large number of tests, some of which run quickly and others very slowly.
The testthat package currently does not seem to offer any easy way to get the timing info of how long each test took.
My work-around, which works, is to copy the name of each test into a call to the function tictoc::tic("test name") and place a tictoc::toc() call at the end of every test. But this is tedious. It would be much nicer if there was a parameter in the test_that function (or a global option?) which specified that test timing info should or should not be collected for each test.