following up the discussion in #43757
if we want to allow the concurrency option to be a boolean, we need to come up with good defaults
there are two levels of concurrency:
- when running multiple test files, using
--test each file is spawned in its own process so we use os.cpus().length as the default
- inside a test file - we use 1 as the default wich will be equivalent to
false
Assuming we want to allow passing concurrency: true in a test file - what number would that convert to?