use describe in docs

This commit is contained in:
tristan 2024-01-02 13:55:51 +00:00
parent 32a3950d16
commit 44e647cac0
3 changed files with 16 additions and 9 deletions

View file

@ -25,10 +25,12 @@ msg: {
else v;
success =
builtins.trace "testing if it ${msg}"
( if throws
then (builtins.tryEval actual).success == false
else (a == e) );
builtins.trace "testing if it ${msg}"
(
if throws
then (builtins.tryEval actual).success == false
else (a == e)
);
in
{
inherit success msg;