feat(testlib): add enable/disable test debug utils

This commit is contained in:
Lorenzo Delgado 2022-10-28 15:04:29 +02:00 committed by GitHub
parent 16c85db43c
commit 979f1d397a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
template suitex*(name: string, body: untyped) = discard
template xsuite*(name: string, body: untyped) = discard
template testx*(name: string, body: untyped) = discard
template xtest*(name: string, body: untyped) = discard
template procSuitex*(name: string, body: untyped) = discard
template xprocSuite*(name: string, body: untyped) = discard
template asyncTestx*(name: string, body: untyped) = discard
template xasyncTest*(name: string, body: untyped) = discard