(env: Env)
| 99 | * affected user. |
| 100 | */ |
| 101 | export function assertBootInvariants(env: Env): void { |
| 102 | const violations = collectBootInvariantViolations(env); |
| 103 | |
| 104 | if (violations.length > 0) { |
| 105 | throw new BootInvariantError(violations); |
| 106 | } |
| 107 | } |
no test coverage detected