diff --git a/tests/ttasks.nim b/tests/ttasks.nim index 6719b5c..b995914 100644 --- a/tests/ttasks.nim +++ b/tests/ttasks.nim @@ -21,6 +21,7 @@ suite "async tests": var tp = Taskpool.new(num_threads = 2) # Default to the number of hardware threads. asyncTest "test": var jobs = newJobQueue[float](taskpool = tp) + echo "\nstart" let res = await jobs.submit(addNums(1.0, 2.0,)) echo "result: ", res.repr