【问题标题】:App.reset() fails at ember-qunit teardownApp.reset() 在 ember-qunit 拆解时失败
【发布时间】:2014-07-22 19:39:40
【问题描述】:

我所有的 ember-qunit 测试都有类似的设置:

moduleFor('route:marketplace-search', 'Marketplace Search route', {
  setup: function() {
    setFixtures();
  },
  teardown: function() {
    App.reset();
  }
});

其中一个正在抛出错误: Uncaught TypeError: Cannot read property 'length' of null

这可以追溯到我的marketplace_search_spec.js 文件中的App.reset() 行:

DEBUG: ------------------------------- ember.js?body=1:14069
DEBUG: Ember      : 1.7.0-beta.1+canary.3d81867a ember.js?body=1:14069
DEBUG: Ember Data : 1.0.0-beta.9+canary.45d196b2 ember.js?body=1:14069
DEBUG: Handlebars : 1.3.0 ember.js?body=1:14069
DEBUG: jQuery     : 1.10.2 ember.js?body=1:14069
DEBUG: ------------------------------- ember.js?body=1:14069
Uncaught TypeError: Cannot read property 'length' of null ember.js?body=1:26529
__exports__.default.ArrayProxy.extend._resetSubControllers ember.js?body=1:26529
__exports__.default.ArrayProxy.extend.willDestroy ember.js?body=1:26542
apply ember.js?body=1:17952
superWrapper ember.js?body=1:17538
DeferredActionQueues.invoke ember.js?body=1:637
DeferredActionQueues.flush ember.js?body=1:687
Backburner.end ember.js?body=1:150
Backburner.run ember.js?body=1:205
apply ember.js?body=1:17955
run ember.js?body=1:16601
handleReset ember.js?body=1:2701
Backburner.run ember.js?body=1:201
apply ember.js?body=1:17955
run ember.js?body=1:16601
apply ember.js?body=1:17955
run.join ember.js?body=1:16643
Namespace.extend.reset ember.js?body=1:2710
moduleFor.teardown marketplace_search_spec.js?body=1:6
_callbacks.teardown ember-qunit.js?body=1:175
Test.teardown teaspoon-qunit.js?body=1:226
(anonymous function) teaspoon-qunit.js?body=1:366
process teaspoon-qunit.js?body=1:1455
(anonymous function) teaspoon-qunit.js?body=1:481

任何想法为什么我看到这个失败?

Failures:

  1) Marketplace Search route transitions to company.marketplace (1, 1, 2)
     Failure/Error: Teardown failed on transitions to company.marketplace: 'null' is not an object (evaluating 'subControllers.length')

Finished in 7.94400 seconds
127 examples, 1 failure

【问题讨论】:

标签: ember.js ember-qunit


【解决方案1】:

正如@AmielMartin 指出的那样,我的问题是由于没有在控制器init 中调用_super 引起的,我覆盖了我的ArrayController

App.MarketplaceSearchController = Ember.ArrayController.extend({
  init: function() {
    this._super();
    // Do stuff here
  }
});

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2020-02-19
    • 2014-01-22
    • 1970-01-01
    • 2010-10-30
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多