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
Hello there, I'd like to use jasmine in my test suite so I installed
npm install karma-jasmine --save-dev npm install jasmine-core --save-dev
then
frameworks: ['jasmine'],
but when I run
npm test
I've got
node_modules/di/lib/injector.js:9 throw error('No provider for "' + name + '"!');
Can you help me, please ? Thanks in advance.
The text was updated successfully, but these errors were encountered:
I guess you only need karma-jasmine. did you try to run the tests without jasmine-core
Sorry, something went wrong.
Thanks Samitthaf for the kind and quick reply. The jasmine-core is required but I worked it out adding
require("karma-jasmine")
to the array plugins. Thanks .
@whisher yup you need to tell karma what are plugins you need to use ;)
No branches or pull requests
Hello there,
I'd like to use jasmine in my test suite
so I installed
then
but when I run
I've got
Can you help me, please ?
Thanks in advance.
The text was updated successfully, but these errors were encountered: