emberjs / ember-mocha

Mocha helpers for testing Ember.js applications
Apache License 2.0
130 stars 69 forks source link

Not compatible with Ember 4+ #691

Open arthur5005 opened 2 years ago

arthur5005 commented 2 years ago

Getting an error:

Error: Could not find module `@ember/application/deprecations` imported from `@ember/test-helpers`

Because of https://deprecations.emberjs.com/v3.x/#toc_old-deprecate-method-paths, you need to upgrade the @ember/test-helpers to the latest version, which has dealt with the deprecation

I'm currently forcing the resolutions on that package in my project.

  // yarn
  "resolutions": {
    "ember-mocha/@ember/test-helpers": "^2.6.0"
  }, 
  // npm
  "overrides": {
    "ember-mocha": {
      "@ember/test-helpers": "^2.6.0"
    }
  }