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
Current error message is
Tried to override "my-injectable" which is not registered. 125 | di = getDiForUnitTesting({ doGeneralOverrides: true }); 126 | > 127 | di.override(my-injectable, () => [ | ^ 128 | acmeGroup, 129 | orgA, 130 | teamA, at Object.override (node_modules/@ogre-tools/injectable/build/index.js:1:3041)
Most of the time in my case the error caused by invalid injectable filename: it was my-injectable.ts. And it should be my.injectable.ts.
my-injectable.ts
my.injectable.ts
So I suggest to add little advice like so:
Tried to override "my-injectable" which is not registered. Please check the filename, it must contain "*.injectable.ts`. Or something similar.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current error message is
Most of the time in my case the error caused by invalid injectable filename: it was
my-injectable.ts
. And it should bemy.injectable.ts
.So I suggest to add little advice like so:
The text was updated successfully, but these errors were encountered: