mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
* "eg" is a misspelled "egg", "e.g." is "exempli gratia"
* Also, "ie" is "i.e.".
(cherry picked from commit bbe49a14ae)
11 lines
462 B
Nim
11 lines
462 B
Nim
switch("path", "$lib/../testament/lib")
|
|
# so we can `import stdtest/foo` inside tests
|
|
# Using $lib/../ instead of $nim/ so you can use a different nim to run tests
|
|
# during local testing, e.g. nim --lib:lib.
|
|
|
|
## prevent common user config settings to interfere with testament expectations
|
|
## Indifidual tests can override this if needed to test for these options.
|
|
switch("colors", "off")
|
|
switch("listFullPaths", "off")
|
|
switch("excessiveStackTrace", "off")
|