We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4706bfc commit 04022eeCopy full SHA for 04022ee
integration/vscode/ada/test/general/extension.test.ts
@@ -88,7 +88,9 @@ suite('Extensions Test Suite', function () {
88
// to the project's root directory (workspace directory)
89
await vscode.commands.executeCommand('als-reload-project');
90
try {
91
- assert.strictEqual(await adaExtState.getObjectDir(), folder.fsPath);
+ const objDirValue = await adaExtState.getObjectDir();
92
+ const objDirURI = vscode.Uri.file(objDirValue);
93
+ assert.strictEqual(objDirURI.fsPath, folder.fsPath);
94
} finally {
95
// Restore the old GPR file contents
96
writeFileSync(fileUri.fsPath, contentBefore);
0 commit comments