我注意到在当前版本的master中你不再需要初始化你的ember应用程序(它似乎只是在加载时发生)。
但是因为我想对我的ember应用程序的部分进行单元测试,所以我想知道如何手动添加商店。
initialize: function(container, application) {
container.register('store', 'main', application.Store);
container.lookup('store:main');
}
https://github.com/emberjs/data/commit/708acf8cbfb31abe0accf0e8461069fa5785fc63
在上面列出的提交中,看起来我只需要添加一个默认存储。什么是默认容器?当我需要模拟/注入商店时,如何自己调用这两行?