fix(plugins): add missing request spy to PluginHttp mocks

This commit is contained in:
Johannes Millan 2026-03-28 21:42:48 +01:00
parent 020fd56504
commit 0b19712b53
2 changed files with 2 additions and 0 deletions

View file

@ -46,6 +46,7 @@ describe('PluginIssueProviderAdapterService', () => {
put: jasmine.createSpy('put'),
patch: jasmine.createSpy('patch'),
delete: jasmine.createSpy('delete'),
request: jasmine.createSpy('request'),
};
const createMockDefinition = (

View file

@ -73,6 +73,7 @@ const mockHttpHelper: PluginHttp = {
put: jasmine.createSpy('put'),
patch: jasmine.createSpy('patch'),
delete: jasmine.createSpy('delete'),
request: jasmine.createSpy('request'),
};
describe('createPluginSyncAdapter', () => {