We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cda72b5 commit 5d36bfeCopy full SHA for 5d36bfe
tests/projects/testproject/tests/testwithsuite.nim
@@ -20,6 +20,5 @@ suite "test suite 2":
20
test "can add 5":
21
check add(5, 5) == 10
22
23
-
24
test "can add 6":
25
tests/ttestrunner.nim
@@ -15,6 +15,10 @@ suite "Test Parser":
15
16
test "should be able to retrieve suites and tests from a file":
17
let file = getCurrentDir() / "tests" / "projects" / "testproject" / "tests" / "testwithsuite.nim"
18
+ if not fileExists(file):
19
+ echo "File does not exist " & file
+ echo getCurrentDir()
+
check fileExists(file)
let testInfo = extractTestInfo(file)
# echo testInfo
0 commit comments