From 6b8060d778219efc72df288a0b3651e4680b29b3 Mon Sep 17 00:00:00 2001 From: Lorenzo Delgado Date: Fri, 28 Oct 2022 15:04:29 +0200 Subject: [PATCH] feat(testlib): add enable/disable test debug utils --- tests/v2/testlib/testutils.nim | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tests/v2/testlib/testutils.nim diff --git a/tests/v2/testlib/testutils.nim b/tests/v2/testlib/testutils.nim new file mode 100644 index 000000000..da8f1d5a4 --- /dev/null +++ b/tests/v2/testlib/testutils.nim @@ -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 +