(...args: any[])
| 1055 | class MockConsole { |
| 1056 | res: any[][] = []; |
| 1057 | log(...args: any[]): void { |
| 1058 | // Logging from ErrorHandler should run outside of the Angular Zone. |
| 1059 | NgZone.assertNotInAngularZone(); |
| 1060 | this.res.push(args); |
| 1061 | } |
| 1062 | error(...args: any[]): void { |
| 1063 | // Logging from ErrorHandler should run outside of the Angular Zone. |
| 1064 | NgZone.assertNotInAngularZone(); |
nothing calls this directly
no test coverage detected