mirror of
https://github.com/status-im/nim-task-runner.git
synced 2025-02-19 18:08:32 +00:00
13 lines
250 B
Nim
13 lines
250 B
Nim
import chronos, unittest
|
|
|
|
template asyncTest*(name, body: untyped) =
|
|
test name:
|
|
proc scenario {.async.} = body
|
|
waitFor scenario()
|
|
|
|
template procSuite*(name, body: untyped) =
|
|
proc suitePayload =
|
|
suite name:
|
|
body
|
|
suitePayload()
|