From 9f31323a5f38bf9d7402676f8171aceea45fa091 Mon Sep 17 00:00:00 2001 From: gmega Date: Fri, 15 Dec 2023 15:32:12 -0300 Subject: [PATCH] add missing launderExceptions; actual version 0.4.3 --- asynctest/templates.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asynctest/templates.nim b/asynctest/templates.nim index b8c64d1..66adb06 100644 --- a/asynctest/templates.nim +++ b/asynctest/templates.nim @@ -23,7 +23,7 @@ template suite*(name, body) = ## Runs before all tests in the suite template setupAll(setupAllBody) {.used.} = - let b = proc {.async.} = setupAllBody + let b = proc {.async.} = launderExceptions: setupAllBody waitFor b() ## Runs after all tests in the suite