()
| 51 | } |
| 52 | |
| 53 | function buildStartBlockConfig(): BlockConfig { |
| 54 | const blockConfig = getBlock(START_BLOCK_TYPE) |
| 55 | |
| 56 | if (!blockConfig) { |
| 57 | throw new Error('Start trigger block configuration is not registered') |
| 58 | } |
| 59 | |
| 60 | return blockConfig |
| 61 | } |
| 62 | |
| 63 | function buildStartBlockState( |
| 64 | blockConfig: BlockConfig, |
no test coverage detected