Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 0 additions & 4 deletions core/autocomplete/filtering/test/filter.vitest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ describe("Autocomplete filtering tests", () => {
tearDownTestDir();
});

beforeEach(async () => {
await new Promise((resolve) => setTimeout(resolve, 50));
});

describe("Should return unmodified LLM output", () => {
it.each(filterTestCases(TEST_CASES_WITHOUT_DIFF))(
"$description",
Expand Down
1 change: 1 addition & 0 deletions core/autocomplete/filtering/test/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export async function testAutocompleteFiltering(
const result = await completionProvider.provideInlineCompletionItems(
autocompleteInput,
undefined,
true, // force=true to skip debounce in tests
);

// Ensure that we return the text that is wanted to be displayed
Expand Down
Loading