* Check if a workspace file exists.
(file: string)
| 180 | * Check if a workspace file exists. |
| 181 | */ |
| 182 | async workspaceFileExists(file: string): Promise<boolean> { |
| 183 | return existsSync(this.getWorkspacePath(file)); |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Execute a given command in the root of the lerna workspace under test within the fixture. |
no test coverage detected