-
Notifications
You must be signed in to change notification settings - Fork 13
Options usage
Fabian Te edited this page Oct 26, 2018
·
1 revision
-
output (string)
Outputs as a TRX file into the provided path. If not provided, outputs to stdout. -
treatPendingAsNotExecuted (boolean)
Pending tests (tests without implementation, or maked with.skip
) have an outcome ofNotExecuted
instead ofPending
in the TRX file. -
excludePending (boolean)
Tests with aPending
state are excluded from the TRX file. -
warnExcludedPending (boolean)
When combined with excludePending, writes a warning to stderr with the number of tests that have been excluded because they had the statePending
, if the number is more than 0.
If you want to use multiple options, seperate them with a ,
like this:
--reporter-options treatPendingAsNotExecuted,output=./test-result.trx