(options)
| 53 | }) |
| 54 | }, |
| 55 | group(options) { |
| 56 | return options?.collapsed ? |
| 57 | core.sync(() => console.groupCollapsed(options?.label)) : |
| 58 | core.sync(() => console.group(options?.label)) |
| 59 | }, |
| 60 | groupEnd: core.sync(() => { |
| 61 | console.groupEnd() |
| 62 | }), |
nothing calls this directly
no test coverage detected