cth_readable icon indicating copy to clipboard operation
cth_readable copied to clipboard

Common Test hooks for more readable logs

Results 2 cth_readable issues
Sort by recently updated
recently updated
newest added

When fetching the package from hex.pm, the tests are missing. Thus one can not check whether the package is actually working (passing tests) in the own environment. Please add the...

Given the following suite `foo_SUITE`: ```erl -module(foo_SUITE). -export([ suite/0, all/0, groups/0, init_per_suite/1, end_per_suite/1, init_per_group/2, end_per_group/2, init_per_testcase/2, end_per_testcase/2 ]). -export([a/1, b/1, c/1]). suite() -> [{timetrap, {seconds, 10}}]. init_per_suite(Config) -> Config. end_per_suite(_Config)...