()
| 81 | } |
| 82 | |
| 83 | export function clearLogs() { |
| 84 | const logs = Array.from(loggedLogs); |
| 85 | loggedLogs.length = 0; |
| 86 | return logs; |
| 87 | } |
| 88 | |
| 89 | export function clearWarnings() { |
| 90 | const warnings = Array.from(loggedWarns); |
no outgoing calls
no test coverage detected