nim-dagger/tests/checktest.nim
Adam Uhlíř e5df8c50d3
style: nph formatting (#1067)
* style: nph setup

* chore: formates codex/ and tests/ folder with nph 0.6.1
2025-01-21 20:54:46 +00:00

29 lines
476 B
Nim

import ./helpers
## Unit testing suite that calls checkTrackers in teardown to check for memory leaks using chronos trackers.
template checksuite*(name, body) =
suite name:
proc suiteProc() =
multisetup()
teardown:
checkTrackers()
body
suiteProc()
template asyncchecksuite*(name, body) =
suite name:
proc suiteProc() =
asyncmultisetup()
teardown:
checkTrackers()
body
suiteProc()
export helpers