From what I can tell options are only supported currently from the command line.
It might be useful to try to find a well-known file that can store options within it. This way it can be source controlled by teams, and provide a more deterministic result between local development and CI builds without developers having to know which various flags to set.
E.g.
test-options.json
{
"minimum-expected-tests": 200,
"coverage": true,
"report-trx": true
}
From what I can tell options are only supported currently from the command line.
It might be useful to try to find a well-known file that can store options within it. This way it can be source controlled by teams, and provide a more deterministic result between local development and CI builds without developers having to know which various flags to set.
E.g.
test-options.json{ "minimum-expected-tests": 200, "coverage": true, "report-trx": true }