* Read the contents of a given file within the lerna workspace under test.
(file: string)
| 173 | * Read the contents of a given file within the lerna workspace under test. |
| 174 | */ |
| 175 | async readWorkspaceFile(file: string): Promise<string> { |
| 176 | return readFile(this.getWorkspacePath(file), "utf-8"); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Check if a workspace file exists. |
no test coverage detected