mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-18 00:46:45 +00:00
fix(plugins): add missing request spy to PluginHttp mocks
This commit is contained in:
parent
020fd56504
commit
0b19712b53
2 changed files with 2 additions and 0 deletions
|
|
@ -46,6 +46,7 @@ describe('PluginIssueProviderAdapterService', () => {
|
|||
put: jasmine.createSpy('put'),
|
||||
patch: jasmine.createSpy('patch'),
|
||||
delete: jasmine.createSpy('delete'),
|
||||
request: jasmine.createSpy('request'),
|
||||
};
|
||||
|
||||
const createMockDefinition = (
|
||||
|
|
|
|||
|
|
@ -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', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue