警告:我是新手。在此先感谢您的帮助。

Pavlov/QUnit 导致我的 ember 应用程序中的路由器出现问题。单独使用 QUnit 时,以下测试通过:

test "/contacts", ->
  expect(1)
  visit('/contacts').then ->
    ok(exists(".nav"), "The navbar was rendered")

但是当将 Pavlov 与 QUnit 一起使用时,以下测试会失效:
describe 'contacts index', ->
    it 'does render index', ->
      visit('/contacts').then ->
        assert(exists(".nav")).isTrue('The navbar was rendered')

并在执行以下操作时在 collectObjects 方法中产生“没有方法‘getHandler’”错误:



堆栈跟踪如下:
TypeError: Object #<Object> has no method 'getHandler'
    at collectObjects (http://localhost:3000/assets/test_helper.js:37674:28)
    at Object.Router.handleURL (http://localhost:3000/assets/test_helper.js:37347:9)
    at Ember.Router.Ember.Object.extend.handleURL (http://localhost:3000/assets/test_helper.js:38135:17)
    at Ember.Application.Ember.Namespace.extend.handleURL (http://localhost:3000/assets/test_helper.js:41451:12)
    at http://localhost:3000/assets/test_helper.js:18367:19
    at Object.Ember.handleErrors (http://localhost:3000/assets/test_helper.js:14228:17)
    at invoke (http://localhost:3000/assets/test_helper.js:18365:16)
    at Object.tryable (http://localhost:3000/assets/test_helper.js:18550:14)
    at Object.Ember.tryFinally (http://localhost:3000/assets/test_helper.js:15023:24)
    at Object.Ember.run (http://localhost:3000/assets/test_helper.js:18554:16)

最佳答案

我刚刚在 QUnit 上遇到了同样的问题。测试在我的 Ember 应用程序准备好之前就开始了,所以对 visit() 的调用会失败。

尝试将 QUnit 自动启动标志设为 false ( http://api.qunitjs.com/QUnit.config/ ) 并从应用程序就绪回调中调用 QUnit.start()。为我修复了它,如果您需要更多帮助,可以查看此 repo:https://github.com/remichaignon/ember-boilerplate

关于ember.js - emberjs : Testing with Pavlov/QUnit produces TypeError: Object #<Object> has no method 'getHandler' ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16759633/

10-12 13:49