test(scaffolder): remove invalid test

Signed-off-by: Benjamin Janssens <benji.janssens@gmail.com>
This commit is contained in:
Benjamin Janssens
2025-02-03 16:10:20 +01:00
committed by blam
parent 8e67e4a6ee
commit 2e296c403a
@@ -80,18 +80,4 @@ describe('handleAutocompleteRequest', () => {
}),
).rejects.toThrow(InputError);
});
it('should throw an error if context id is missing for repositories', async () => {
const handleAutocompleteRequest = createHandleAutocompleteRequest({
integrations: mockIntegrations,
});
await expect(
handleAutocompleteRequest({
resource: 'repositories',
token: 'token',
context: {},
}),
).rejects.toThrow(InputError);
});
});