mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-28 23:55:43 +00:00
15 lines
270 B
Nim
15 lines
270 B
Nim
|
{.used.}
|
||
|
|
||
|
import
|
||
|
os, strutils, strformat,
|
||
|
util/json_testing
|
||
|
|
||
|
template sourceDir: string = currentSourcePath.rsplit(DirSep, 1)[0]
|
||
|
|
||
|
const casesDir = &"{sourceDir}{DirSep}cases{DirSep}"
|
||
|
|
||
|
for file in walkDirRec(casesDir):
|
||
|
if file.endsWith("json"):
|
||
|
runTests(file)
|
||
|
|