mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-26 23:02:30 +00:00
feat(testlib): mark commented test cases as skipped
This commit is contained in:
parent
27a7040f8e
commit
85d2842f75
@ -1,12 +1,25 @@
|
||||
template suitex*(name: string, body: untyped) = discard
|
||||
import
|
||||
testutils/unittests
|
||||
|
||||
template xsuite*(name: string, body: untyped) = discard
|
||||
template suitex*(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 procSuitex*(name: string, body: untyped) = discard
|
||||
|
||||
template asyncTestx*(name: string, body: untyped) = discard
|
||||
template xasyncTest*(name: string, body: untyped) = discard
|
||||
|
||||
|
||||
template xtest*(name: string, body: untyped) =
|
||||
test name:
|
||||
skip()
|
||||
|
||||
template testx*(name: string, body: untyped) =
|
||||
test name:
|
||||
skip()
|
||||
|
||||
template xasyncTest*(name: string, body: untyped) =
|
||||
test name:
|
||||
skip()
|
||||
|
||||
template asyncTestx*(name: string, body: untyped) =
|
||||
test name:
|
||||
skip()
|
||||
|
Loading…
x
Reference in New Issue
Block a user