We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an Angular service (generated by an Open Api Swagger file), which looks like this:
@Injectable({ providedIn: 'root' }) export class MyService { info = { request: () => { return ... } } }
The requests are mapped into objects if they are defined in the swagger file like that.
The autoSpy of this (awesome btw) library seems to always mocks objects to undefined?
autoSpy
undefined
What i would expect would be the object to exist with a function request which should be the mocked function.
request
With the current implementation it is not possible for me to use it correctly, because i receive the error:
TypeError: Cannot read properties of undefined (reading 'request') when calling this.service.info.request()
TypeError: Cannot read properties of undefined (reading 'request'
this.service.info.request()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the bug
I have an Angular service (generated by an Open Api Swagger file), which looks like this:
The requests are mapped into objects if they are defined in the swagger file like that.
The
autoSpy
of this (awesome btw) library seems to always mocks objects toundefined
?What i would expect would be the object to exist with a function
request
which should be the mocked function.With the current implementation it is not possible for me to use it correctly, because i receive the error:
TypeError: Cannot read properties of undefined (reading 'request'
) when callingthis.service.info.request()
The text was updated successfully, but these errors were encountered: