(config: Configuration)
| 121 | } |
| 122 | |
| 123 | static getDriverDependencies(config: Configuration): string[] { |
| 124 | try { |
| 125 | return config.getDriver().getDependencies(); |
| 126 | } catch { |
| 127 | return []; |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | static dump(text: string, config?: Configuration): void { |
| 132 | if (config?.get('highlighter')) { |
no test coverage detected