You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.
test('name ', function(){
line x : let service=this.subject();
})
Original source is a simple service written by extending Ember.extend service .
The same test was running before but failed in line x with the upgrade. It throws error saying
"promise rejected before "test method". Attempting to register unknown factory.
From vendor map , cannot read property subject of undefined.
The text was updated successfully, but these errors were encountered:
Ember global 2.10
Ember cli 2.10
Ember ajax 2.4.1
ember engine 0.4.0 beta
Embet Qunit 3.0.1 We also use Sinon
All the Qunit (Unit) tests which were working in Ember 2.6 failed in Ember 2.10.
For ex when we are trying to unit test
import {moduleFor , test} from 'ember-qunit';
moduleFor(' service',test name' {
})
test('name ', function(){
line x : let service=this.subject();
})
Original source is a simple service written by extending Ember.extend service .
The same test was running before but failed in line x with the upgrade. It throws error saying
"promise rejected before "test method". Attempting to register unknown factory.
From vendor map , cannot read property subject of undefined.
The text was updated successfully, but these errors were encountered: