()
| 265 | } |
| 266 | |
| 267 | async _validateConfig() { |
| 268 | if (this.#configValidated) { |
| 269 | return; |
| 270 | } |
| 271 | await validateWorkspace({ |
| 272 | config: this.#configuration |
| 273 | }); |
| 274 | this.#configValidated = true; |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | export default Workspace; |
no test coverage detected