Small fixes for output window and test (#11533)

* Small fixes for output window and test

* removing some parts of recent tests that might cause issues
This commit is contained in:
Udeesha Gautam
2020-07-27 13:28:18 -07:00
committed by GitHub
parent c275f367da
commit 6928904a26
4 changed files with 7 additions and 23 deletions

View File

@@ -21,7 +21,7 @@ export function getErrorMessage(error: any): string {
/**
* removes any leading portion shared between the two URIs from outerUri.
* e.g. [@param innerUri: 'this\is'; @param outerUri: '\this\is\my\path'] => 'my\path' OR
* e.g. [@param innerUri: 'this\was'; @param outerUri: '\this\is\my\path'] => '..\my\path'
* e.g. [@param innerUri: 'this\was'; @param outerUri: '\this\is\my\path'] => '..\is\my\path'
* @param innerUri the URI that will be cut away from the outer URI
* @param outerUri the URI that will have any shared beginning portion removed
*/