mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 04:53:33 +01:00
Replace ChatResolvedVariable with ChatValueReference (#211665)
* Replace ChatResolvedVariable with ChatValueReference Participant API #199908 * Fix integration test * any -> unknown
This commit is contained in:
@@ -81,7 +81,7 @@ suite('chat', () => {
|
||||
commands.executeCommand('workbench.action.chat.open', { query: '@participant hi #myVar' });
|
||||
const request = await deferred.p;
|
||||
assert.strictEqual(request.prompt, 'hi #myVar');
|
||||
assert.strictEqual(request.variables[0].values[0].value, 'myValue');
|
||||
assert.strictEqual(request.variables[0].value, 'myValue');
|
||||
});
|
||||
|
||||
test('result metadata is returned to the followup provider', async () => {
|
||||
|
||||
Reference in New Issue
Block a user