mirror of
https://github.com/status-im/asynctest.git
synced 2025-02-19 16:24:18 +00:00
15 lines
329 B
Nim
15 lines
329 B
Nim
template asynctest*(name, body) =
|
|
test name:
|
|
let asyncproc = proc {.async.} = body
|
|
waitFor asyncproc()
|
|
|
|
template asyncsetup*(body) =
|
|
setup:
|
|
let asyncproc = proc {.async.} = body
|
|
waitFor asyncproc()
|
|
|
|
template asyncteardown*(body) =
|
|
teardown:
|
|
let asyncproc = proc {.async.} = body
|
|
waitFor asyncproc()
|