()
| 504 | } |
| 505 | |
| 506 | public get serializedRootConfig(): SerializedRootConfig { |
| 507 | return { |
| 508 | ...this.getRootProject().serializedConfig, |
| 509 | projects: this.projects.map(project => project.serializedConfig), |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | public getProjectByName(name: string): TestProject { |
| 514 | const project = this.projects.find(p => p.name === name) |
nothing calls this directly
no test coverage detected