(stdout)
| 14 | const kInternalTests = ['a', 'b', 'c', 'd', 'e']; |
| 15 | |
| 16 | function getShardOrder(stdout) { |
| 17 | return Array.from(stdout.matchAll(/ok \d+ - ([a-j]\.cjs) this should pass/g), ({ 1: name }) => name); |
| 18 | } |
| 19 | |
| 20 | function getInternalExecutionOrder(stdout) { |
| 21 | const match = stdout.match(/EXECUTION_ORDER:([a-e](?:,[a-e])*)/); |
no test coverage detected