1234567891011 |
- 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, eg 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")
|