()
| 30 | } |
| 31 | |
| 32 | async projectPath() { |
| 33 | const repoBase = await this.repoBase(); |
| 34 | const projectPath = encodeURIComponent( |
| 35 | this.repo.replace(repoBase, '').substr(1) |
| 36 | ); |
| 37 | |
| 38 | return projectPath; |
| 39 | } |
| 40 | |
| 41 | async repoBase() { |
| 42 | if (this.detectedBase) return this.detectedBase; |
no test coverage detected