Onboard vscode-api-tests to use shared tsconfig

This commit is contained in:
Matt Bierner
2018-10-01 16:38:29 -07:00
parent 402106a699
commit 950a3ff867
2 changed files with 4 additions and 10 deletions

View File

@@ -349,6 +349,7 @@ suite('workspace-namespace', () => {
if (uri.authority === 'foo') {
return '1';
}
return undefined;
}
});
let registration2 = vscode.workspace.registerTextDocumentContentProvider('foo', {
@@ -356,6 +357,7 @@ suite('workspace-namespace', () => {
if (uri.authority === 'bar') {
return '2';
}
return undefined;
}
});