Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ suite('Copilot Chat Sanity Test', function () {
const conversation = conversationStore.getConversation(result2.metadata.responseId);
assert.ok(conversation, 'Expected conversation to be available');
} finally {
conversationFeature.activated = false;
conversationFeature.dispose();
}
});
});
Expand Down Expand Up @@ -132,7 +132,7 @@ suite('Copilot Chat Sanity Test', function () {
const conversation = conversationStore.getConversation(result2.metadata.responseId);
assert.ok(conversation, 'Expected conversation to be available');
} finally {
conversationFeature.activated = false;
conversationFeature.dispose();
}
});
});
Expand All @@ -153,7 +153,7 @@ suite('Copilot Chat Sanity Test', function () {
await interactiveSession.getResult();
assert.ok(progressReport.currentProgress);
} finally {
conversationFeature.activated = false;
conversationFeature.dispose();
}
});
});
Expand Down Expand Up @@ -216,7 +216,7 @@ suite('Copilot Chat Sanity Test', function () {
const text = await textPromise;
assert.ok(text.length > 0);
} finally {
conversationFeature.activated = false;
conversationFeature.dispose();
r.dispose();
}
});
Expand Down
Loading