()
| 260 | } |
| 261 | |
| 262 | async _getShimConfigurations() { |
| 263 | // No project configuration found |
| 264 | // => Try to create one from shims |
| 265 | const shimConfiguration = await this._createConfigurationFromShim(); |
| 266 | if (shimConfiguration) { |
| 267 | log.verbose(`Created configuration from shim extensions for module ${this.getId()}`); |
| 268 | return [shimConfiguration]; |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | async _getYamlConfigurations() { |
| 273 | const configs = await this._readConfigFile(); |
no test coverage detected