最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to inject the store into an Ember.Service in unit tests? - Stack Overflow

programmeradmin2浏览0评论

In my app I have this initializer which injects the store into all services:

export function initialize(container, application) {
  application.inject('service', 'store', 'store:main');
}

export default {
  name: 'inject-store-in-services',
  initialize: initialize
};

My problem is that when I run unit tests, services don’t have the store property. So my question: is there a way to achieve what my initializer does but inside a unit test context?

In my app I have this initializer which injects the store into all services:

export function initialize(container, application) {
  application.inject('service', 'store', 'store:main');
}

export default {
  name: 'inject-store-in-services',
  initialize: initialize
};

My problem is that when I run unit tests, services don’t have the store property. So my question: is there a way to achieve what my initializer does but inside a unit test context?

Share Improve this question edited Apr 3, 2015 at 13:57 charles_demers asked Apr 3, 2015 at 13:48 charles_demerscharles_demers 1252 silver badges6 bronze badges 4
  • Mock the store, a unit test shouldn't be going outside the scope of the service. – Kingpin2k Commented Apr 3, 2015 at 14:17
  • @Kingpin2k My service is actually just a wrapper around predefined operations on models that I don’t want to repeat everywhere in my app. I need to test that it returns a DS.Model with the correct properties set. Mocking the store would just test my mocks so... – charles_demers Commented Apr 3, 2015 at 14:24
  • It doesn't work when you run your tests.. Does it work when your app runs normally (not in test mode)? – jmurphyau Commented Apr 5, 2015 at 9:36
  • It could be failing because your initialiser might be running before the store initialiser - which would mean it's not available yet – jmurphyau Commented Apr 5, 2015 at 9:42
Add a ment  | 

1 Answer 1

Reset to default 13

In recent versions of Ember you can inject the store as a service, e.g:

Ember.Service.extend({
  store: Ember.inject.service()
});

It gets the service name from the property name, so if you call it something else you need to specify 'store'.. e.g:

Ember.Service.extend({
  banana: Ember.inject.service('store')
});
发布评论

评论列表(0)

  1. 暂无评论