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
instead of
const ngbModalRef = MockService(NgbModalRef); ngbModalRef.componentInstance = certificatesFormMock; ngbModalRef.close = closeSpy;
to have an option like
const ngbModalRef = MockService(NgbModalRef); ngbModalRef.__override({ componentInstance: certificatesFormMock, close: closeSpy, });
ensure that it supports readonly properties and methods too.
The text was updated successfully, but these errors were encountered:
feat: mock-service is typed and supports overrides
2cdf2b1
closes #122
42fc7dc
805e37b
satanTime
Successfully merging a pull request may close this issue.
instead of
to have an option like
ensure that it supports readonly properties and methods too.
The text was updated successfully, but these errors were encountered: