(stdout)
| 18 | } |
| 19 | |
| 20 | function getInternalExecutionOrder(stdout) { |
| 21 | const match = stdout.match(/EXECUTION_ORDER:([a-e](?:,[a-e])*)/); |
| 22 | assert(match, `Missing EXECUTION_ORDER marker in output: ${stdout}`); |
| 23 | return match[1].split(','); |
| 24 | } |
| 25 | |
| 26 | describe('test runner randomize flags via command line', () => { |
| 27 | it('should be deterministic with --test-random-seed', () => { |
no test coverage detected