作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
看来 store
在我的 Ember 测试中不可用,无论是在 ObjectController
的上下文中。或在任何单元测试中。我的单元测试:
`import {test, moduleFor} from "ember-qunit"`
`import DS from "ember-data"`
moduleFor "controller:register", "RegisterController", {
}
test "store is working", ->
expect 1
controller = @subject()
Ember.run(->
sampleUser = controller.get("store").createRecord("user", {
username: "myuser"
password: "otherpassword"
})
ok(sampleUser instanceof DS.Model)
)
Died on test #1 at test (
http://localhost:4200/assets/vendor.js:73539:13
) at eval (app/tests/unit/controllers/register-test.js:19:5) at requireModule (http://localhost:4200/assets/vendor.js:54:29
) athttp://localhost:4200/assets/test-loader.js:14:29
: Cannot read property 'createRecord' of null
DS
来自我的测试或 Controller 本身(运行测试时)的功能?
最佳答案
因为 ember-qunit 不会将 store 注入(inject)到您的 Controller 中,所以它用于单元测试,而不是集成测试。 Ember Data 的存储超出了该 Controller 的范围。
关于unit-testing - Ember 测试 : Cannot read property 'createRecord' of null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25704396/
我是一名优秀的程序员,十分优秀!