mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-31 00:56:32 +00:00
15 lines
278 B
Nim
15 lines
278 B
Nim
{.used.}
|
|
|
|
import
|
|
std/[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)
|
|
|