0
我有以下EmberJS/Konacha代碼。有沒有人有線索爲什麼測試不通過?爲什麼下面的測試不通過?
編輯:
我添加它測試屬性值的代替參考測試用例。
#= require ../spec_helper
describe "Zaptax.v2014.App.AnswersLookup", ->
beforeEach(->
Test.store = TestUtil.lookupStore()
)
it 'finds the answer by reference', ->
page = Test.store.push Zaptax.v2014.App.PageModel, {id: 666, sequence: 123}
assert.equal Test.store.find('page', 666).get('sequence'), 123
返回:
Failed: Zaptax.v2014.App.AnswersLookup finds the answer by reference
AssertionError: expected undefined to equal 123
很難說,但它看起來好像你試圖測試兩個對象的相等性 - 這將始終返回false。 – Andy 2014-10-17 16:00:31
你認爲我在哪裏可以找到任何線索? – LeszekA 2014-10-17 16:03:55
'Test.store.find ...'應該至少返回'PageModel'實例,但它返回空白'Object()' – LeszekA 2014-10-17 16:04:46