Releases: lookback/loltest
Releases · lookback/loltest
New reporter, global config, environment variables
🆕 Features
- Deprecate
--reporter
CLI arg and support environment variables for config instead. Ex: run another reporter with:Prefix config values withLOLTEST_REPORTER=tap loltest
LOLTEST_
and make them uppercase with underscores as separators.testDir
thus becomesLOLTEST_TEST_DIR
. - Add new
loltest2
reporter 💅 - Support global .json config file at
$HOME/.loltest
:{"reporter": "loltest2"}
reporter
andtestDir
are the currently supported config keys.
loltest2 reporter output
Filter on test cases in a file
- 🆕 Filter on test case names by passing a third argument to
loltest
:Will only run test cases that match$ loltest my-file "something"
/something/
in the file that starts withmy-file
. - Exit on duplicate test names.