(enabledWorkflows: string[])
| 611 | } |
| 612 | |
| 613 | function requiresSimulatorDefault(enabledWorkflows: string[]): boolean { |
| 614 | return enabledWorkflows.some((workflowId) => SIMULATOR_DEFAULT_WORKFLOWS.has(workflowId)); |
| 615 | } |
| 616 | |
| 617 | function requiresDeviceDefault(enabledWorkflows: string[]): boolean { |
| 618 | return enabledWorkflows.some((workflowId) => DEVICE_DEFAULT_WORKFLOWS.has(workflowId)); |
no outgoing calls
no test coverage detected