()
| 477 | } |
| 478 | |
| 479 | function isSandboxRequired(): boolean { |
| 480 | const settings = getSettings_DEPRECATED() |
| 481 | return ( |
| 482 | getSandboxEnabledSetting() && |
| 483 | (settings?.sandbox?.failIfUnavailable ?? false) |
| 484 | ) |
| 485 | } |
| 486 | |
| 487 | /** |
| 488 | * Check if the current platform is supported for sandboxing (memoized) |
nothing calls this directly
no test coverage detected