Could not find `ember-resolver` module imported from Ember AppName / resolver tests

I try to run Ember tests and this leads to an error. Could not find module ember-resolverimported from `AppName / resolver.

I'm not sure what causes it. I am using Ember-cli-2.12.1. Any help would be greatly appreciated. Thanks

+4
source share
1 answer

I answer this since I resolved it, and if someone encounters this problem, then they can solve it.

The steps I took to solve this problem.

  • npm cache clear && bower cache clean && rm -rf node_modules bower_components && npm install && bower install

clean and reinstall the Bower component and npm component.

  1. ember init

, , ember-qunit, , , lib cropperjs bower, ember-qunit , ember-cli-build.js, cropperjs npm node_modules, .

+2

Source: https://habr.com/ru/post/1679955/


All Articles