Skip to content

Commit 65c7558

Browse files
committed
Remove tests related to chat
1 parent c5ccfcb commit 65c7558

1 file changed

Lines changed: 0 additions & 14 deletions

File tree

src/test/suite/common/actionMetadataValidation.test.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ import assert from 'node:assert';
55
import { CATEGORY_EDITING, editFileActions } from '@/edit_files';
66
import { changelogActions } from '@/changelog';
77
import { REQUEST_COOKIE_ACTION } from '@/functions/cookies';
8-
import { chatAction } from '@/chat';
9-
import { completeCodeAction } from '@/completions';
108
import { CATEGORY_MISC } from '@/rce';
119
import { lintActions } from '@/lint_problems';
1210

@@ -51,18 +49,6 @@ suite('Validate action metadata', async () => {
5149
}
5250
});
5351

54-
test('Copilot Chat integrations', () => {
55-
const actionsToTest = {
56-
chat: chatAction,
57-
complete_code: completeCodeAction,
58-
};
59-
const actions = Object.keys(actionsToTest) as (keyof typeof actionsToTest)[];
60-
for (const a of actions) {
61-
assert.strictEqual(a, actionsToTest[a].name);
62-
assert.ok(validate(actionsToTest[a].schema, metaschema).valid);
63-
}
64-
});
65-
6652
test('Misc Actions', () => {
6753
const actionsToTest = {
6854
...changelogActions,

0 commit comments

Comments
 (0)