问题
I am trying to run Ember tests and it gives this error saying Could not find module ember-resolver
imported from `AppName/resolver.
I am not sure what is causing it. I am using Ember-cli-2.12.1. Any help would be appreciated. Thanks
回答1:
I am answering this since i have resolved it and if someone come across this issue then they can solve it.
Steps i did to resolve it.
npm cache clear && bower cache clean && rm -rf node_modules bower_components && npm install && bower install
cleaned and reinstall Bower component and npm component.
ember init
Then I started getting error saying could not found module ember-qunit, after digging i found out that i had a lib called cropperjs from bower which was creating some conflict with ember-qunit whenever i import it in ember-cli-build.js , I moved cropperjs to npm node_modules and my tests started running.
回答2:
This error is also caused by having this in your ember-cli-build.js. I was on version 3.4.0 and I had the code below which caused an error.
app.import({
development:'bower_components/ember/ember-template-compiler.js'
});
来源:https://stackoverflow.com/questions/44717464/could-not-find-module-ember-resolver-imported-from-appname-resolver-ember-tes