(runtime: string)
| 112 | } |
| 113 | |
| 114 | function formatRuntimeName(runtime: string): string { |
| 115 | const match = runtime.match(/SimRuntime\.(.+)$/); |
| 116 | if (match) { |
| 117 | return match[1].replace(/-/g, '.').replace(/\.(\d)/, ' $1'); |
| 118 | } |
| 119 | return runtime; |
| 120 | } |
| 121 | |
| 122 | const NEXT_STEP_PARAMS = { |
| 123 | boot_sim: { simulatorId: 'UUID_FROM_ABOVE' }, |
no outgoing calls
no test coverage detected