(cwd: string, name: string)
| 129 | } |
| 130 | |
| 131 | setCurrentProfile(cwd: string, name: string): void { |
| 132 | const configPaths = this.getConfigPaths(cwd); |
| 133 | this.ensureConfigDir(configPaths); |
| 134 | this.writeCurrentProfileName(configPaths, name); |
| 135 | } |
| 136 | |
| 137 | saveProfile( |
| 138 | cwd: string, |
no test coverage detected