* Resolve the file path of a given file within the lerna workspace under test.
(path?: string)
| 166 | * Resolve the file path of a given file within the lerna workspace under test. |
| 167 | */ |
| 168 | getWorkspacePath(path?: string): string { |
| 169 | return path ? joinPathFragments(this.fixtureWorkspacePath, path) : this.fixtureWorkspacePath; |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Read the contents of a given file within the lerna workspace under test. |
no outgoing calls